Forum Replies Created
-
AuthorPosts
-
November 25, 2012 at 10:57 pm in reply to: Add "the number of comments" next to the comment title #1687
Davinder Singh Kainth
MemberFollowing code should help:
// B3- Modify comments header text in comments
add_filter( 'genesis_title_comments', 'child_title_comments');
function child_title_comments() {
return __(comments_number( '{ No Comments }', '{ 1 Comment }', '{ % Comments }' ), 'genesis' );
}Source - http://www.rickrduncan.com/add-comment-number-to-comment-title
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
Member1. Other setting to confirm, on Slider Settings make sure width and height is specified as 570 X 380
2. If still does not work, move the slider widget to different widget area and check if title appears.
3. Disable all plugins, except slider plugin in attempt to isolate the issue.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberFor this use Google Search custom search box by specifying websites from where results should be displayed, instead of default wp search. http://www.google.com/cse/
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberSize is 960px X 110px
You can confirm this by checking following code in style.css file in news theme installed at your end.
#header {
background-color: #fff;
border-left: 1px solid #d5d5d5;
border-right: 1px solid #d5d5d5;
border-top: 1px solid #d5d5d5;
min-height: 110px;
margin: 0 auto;
overflow: hidden;
width: 960px;
}
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberFor playing around learning theme designing, it is always good to setup WordPress on your local PC.
1. Use WAMP software to install WordPress offline on your computer.
2. Install Genesis and child theme (you can use free base child theme for studiopress).
3. Understand and try to learn on Genesis Hooks. See here "http://genesistutorials.com/visual-hook-guide/", there is also plugin for real time learning.
4. Once you know hooks location, goto Studiopress tutorials section and try few codes in functions.php and see what changes they do.
In this way, you will get hang of things and then move CSS Style changes for modifying look of the website theme.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberDid you enable "Display Post/Page Title in Slider" option in slider settings found at Genesis >Slider Settings
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberWhile uploading new image, you should click on "use as featured image" button at the bottom of image upload screen.
Or
You should delete all exisiting images from image upload screen for specific post and then upload new image.
Also, make sure you delete cache, if using any plugin for the same.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesNovember 21, 2012 at 5:46 am in reply to: Genesis Responsive Slider won’t show photos at full size #1090Davinder Singh Kainth
MemberCheck sytle.css for
img {
max-width: 98%;
}Change 98 to 100%
Make sure you delete current image from post and re-upload image of size 780?—300 to check on the issue.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberYou can also modify other remaining part of the header (widget header on the right side) using following code:
#header .widget-area {
float: left;
padding: 20px 0 0;
width: 778px;
}Here 778 is width of right widget in the header. You can play around with 778 and 180 (width of the logo) as per requirement - assuming your header width is set to 960px (as is the case in majority of child themes).
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberUse following:
/* Image Header - Partial Width
------------------------------------------------------------ */
.header-image #header #title-area {
background: url(images/logo.png) left top no-repeat;
}
.header-image #title-area,
.header-image #title,
.header-image #title a {
display: block;
float: left;
height: 60px;
overflow: hidden;
padding: 0;
text-indent: -9999px;
width: 180px;
}
.header-image #description {
display: block;
overflow: hidden;
}Above 180 and 60 is width and height of the logo image displayed at top left part of the header.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberTry this:
1. Drag tag cloud widget.
2. In the title box type
3. Click Save, will disappear from title box.Preview your tag cloud widget, it should appear without any title in the final result.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberIf using blog layout, then use code under title "Exclude Category from Blog" on following link:
source - http://www.billerickson.net/customize-the-wordpress-query/
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesNovember 21, 2012 at 12:26 am in reply to: Genesis Responsive Slider won’t show photos at full size #1075Davinder Singh Kainth
Member1. Say you have set 960 X 200 pixels as dimension in slider settings.
2. Edit photo that you want to display in slider to 960X200 size.
3. Open specific post, upload that photo - while in upload photo box, click "use this as featured image" button and close that box.'
No need to embed that photo inside the post. Similarly, you repeat for photos you want to display in slider - they should appear fine. Though this is time consuming, result is very neat!
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberLooking good and going with the topic of the website. One suggestion though - highlight the header logo little bit 🙂
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberStep 1 Add new widget area "homepage-feature" below header using following code in functions.php file.
genesis_register_sidebar( array(
'id' => 'homepage-feature',
'name' => __( 'Homepage Feature', 'custom' ),
'description' => __( 'This is Homepage feature section', 'custom' ),
) );
/** Top Homepage feature section */
add_action( 'genesis_after_header', 'news_homepage_feature', 9 );
function news_homepage_feature() {
if ( is_home() && is_active_sidebar( 'homepage-feature' ) ) {
echo '';
dynamic_sidebar( 'homepage-feature' );
echo '';
}
}source - http://www.basicwp.com/add-new-widget-genesis-homepage/
Step 2. Install Genesis responsive slider and drag the slider widget into "homepage-feature" widget area.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberThis should help:
#header {
background:#000;
width:100%;
}
#header .wrap {
margin: 0 auto;
overflow: hidden;
width: 960px;
}1. Above header class show black background covering full width.
2. Header wrap define style in content portion of 960px, you can add background style to give different color or image.Ideally, you need to set header to 100% width and add new header wrap class style.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberI guess you figured it out, just had to keep "title" box of widget box blank.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberTo remove Read More... just add following code to functions.php file
// Remove read more - basicWP.com
add_filter( 'get_the_content_more_link', 'child_read_more_link' );
function child_read_more_link() {
return '';
}
source - http://www.basicwp.com/remove-read-more-link-posts-genesis/
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes -
AuthorPosts