PitaMaria
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Child theme issue@wpyogi: I have indeed asked them but their policy is to support only issues with their product and not “global WordPress installation issues.” If I can’t get support here I may ask them to supply child theme files on which to build; just wanted to check here to see if it’s one of those things a forum volunteer like yourself could spot in one second.
Forum: Plugins
In reply to: [Promotion Slider] help changing the read more link with another urlAny update on when this might get fixed? And will it be possible to specify the wording of the “Read more” link (i.e. “Go” or “Learn more”)?
Forum: Plugins
In reply to: [Plugin: wp-crossfade] Permissions issueFigured this out: issue was occurring because my web server was running PHP4. This plugin requires PHP5 (which many web hosts will set up for you if you ask).
Yes, that plugin worked like a charm when paired with a separate plugin called ‘the_excerpt Reloaded’ (find it here). That combination allows you to specify the number of posts to show, the number of excerpts to show, what the ‘read more’ link should read, number of words to limit excerpt to, and more.
Resloving this topic now. Thanks, @matius.
Forum: Fixing WordPress
In reply to: Menus -> theme locations -> not being savedbump. I’m having this issue too and would love to see a response.
Forum: Fixing WordPress
In reply to: using conditional tags for sidebarbump … Can anyone help with this issue?
Forum: Fixing WordPress
In reply to: using conditional tags for sidebarHere’s the code I’ve tried in my child sidebar.php file. The ‘if’ is working but the ‘else’ is not. Please help!
<?php if (!is_home() || !is_page()) {get_sidebar(dynamic_sidebar( 'Blog Widget Area' )); get_sidebar(dynamic_sidebar( 'secondary-widget-area' ));} else {get_sidebar(dynamic_sidebar( 'secondary-widget-area' ));} ?>