Forum Replies Created
-
AuthorPosts
-
October 24, 2014 at 6:10 am in reply to: Mocha – Custom Excerpts not showing up on Home page #128945
JamesRoberts
MemberSorry Neeznoodle I have had my hands full, I assume that you are still having this issue as this topic has not been marked as resolved?
Does changing "For each article in a feed, show" in the reading section make any difference at all?
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
October 24, 2014 at 6:01 am in reply to: Customise theme options from functions.php of the child theme #128944JamesRoberts
MemberHi Marius,
This post may help you http://wpsites.net/wordpress-admin/customize-dashboard-wp-admin/.
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberHi Fernando, Next Gen Gallery is a great gallery plugin with various layout options. Certainly worth a look https://wordpress.org/plugins/nextgen-gallery/
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
October 24, 2014 at 5:45 am in reply to: Responsive header for logo, title and description appearance – Magazine Pro #128942JamesRoberts
MemberHi Tobias,
To start off, you will want to remove the -70px margin-top on .simple-social-icons when the user is on mobile. You will also want to give .site-title 100% width and possibly add around 40px margin-top to .site-header .title-area. That should get you most of the way there 🙂
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberNot too sure what is causing this Matt, is there any reason you are using the Featured Widget Amplified widget rather than the featured post widget? All I can think is that maybe there is some conflict from a Genesis update?
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberHi TGScreative, please can I check, where exactly have you set the news to to be a blog page? Am I correct in thinking that you have set your news page as the static front page under Settings -> Reading? Thanks.
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberHi webcami, you are not far off, try adding the following code...
.menu-top-menu-container li { float: left; list-style: none; padding: 0 10px 0px 10px; }That should get you most of the way, from there you will just need to add some styling to match your design.
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
October 20, 2014 at 4:34 pm in reply to: Mocha – Custom Excerpts not showing up on Home page #128502JamesRoberts
MemberHi Neeznoodle, am I correct in thinking that you have your home page set up to display your latest posts via Settings -> Reading and you have also configured the Content Archives settings to only show excerpts via the Genesis theme settings?
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
October 20, 2014 at 4:26 pm in reply to: How to: sticky secondary nav menu, and for web only? (Gensis Sample) #128498JamesRoberts
MemberHi sblanco, I have not tried it myself but you could give https://wordpress.org/plugins/genesis-sticky-menu/ a try.
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberHey jmurn, you could try the following...
.footer-widgets-2 li { text-align: center; }
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberGreat glad you got it sorted 🙂
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberHi geekartist, I am wondering if you have an archive page with the same URL as your blog page? So if you have an archive page with the URL of "blog" and you also have a page with a URL of "blog", that may be causing issues.
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberNo problem rogerp, glad it helped. Not all themes include a read more link by default, I think that is probably to allow for more flexibility when customising, thats just an assumption though.
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberNo problem, glad you got it sorted 🙂
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberNot too sure about auto installing them on the devices as I have never sold .epub and .mobi files before but you can defiantly sell the files for download with Easy Digital Downloads, and maybe an extension or two https://easydigitaldownloads.com/. Hope that helps.
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberIn order to remove the loop from a static front page, you could use the following in your functions.php...
if (is_page('Home')) { remove_action( 'genesis_loop', 'genesis_do_loop' ); }I've not tested that but in theory it should work.
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberHi UT Mod.
As for showing your taxonomy in your breadcrumb, perhaps this could help http://wpsmith.net/2011/genesis/how-to-create-a-custom-nonhierarchical-taxonomy-breadcrumb-in-genesis/. In regards to making the breadcrumb bold, try addingfont-weight: bold;to.breadcrumb.
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberHi changeinc, am I correct in thinking you are simply looking for a solution for users to download .epub and .mobi from post pages?
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberHi rogerp, you could try and paste the following code into your functions.php...
add_filter('excerpt_more', 'get_read_more_link'); add_filter( 'the_content_more_link', 'get_read_more_link' ); function get_read_more_link() { return '... <a href="' . get_permalink() . '">[Read More]</a>'; }
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
JamesRoberts
MemberHi GiorgarasAE, to call a widget that has already been redgistered use the following code...
genesis_widget_area( 'widget-area-name', array( 'before' => '<aside>', 'after' => '</aside>', ) );And you can check if the widget area is populated by using
is_active_sidebar( 'widget-area-name' );.
Need beautiful and responsive Genesis child themes at amazing prices? Stop by LlamaPress and check out our themes.
-
AuthorPosts