ricka99
Forum Replies Created
-
My question is answered here.
It looks like you can add it anywhere that you see a list of similar lines in nggfunctions.php. It worked for me. Here’s where I put it:
$swfobject->add_attributes(‘styleclass’, ‘slideshow’);
$swfobject->add_attributes(‘name’, ‘so’ . $galleryID);//keep slideshow from autostarting
$swfobject->add_flashvars( autostart, ‘false’);// adding the flash parameter
$swfobject->add_flashvars( ‘file’, NGGALLERY_URLPATH.’xml/imagerotator.php?gid=’ . $galleryID );
$swfobject->add_flashvars( ‘shuffle’, $ngg_options[‘irShuffle’], ‘true’, ‘bool’);Forum: Fixing WordPress
In reply to: [Plugin: Google Analytics for WordPress] Confused about Use…Comment deleted.
Forum: Plugins
In reply to: [Plugin: Enhanced WP Contact Form] Broken with 2.8.1?Me too but it was my first trial use of this plugin so I’m glad to hear that it is a common problem. I’m sure Yoast will get around to fixing it.
Forum: Fixing WordPress
In reply to: [Plugin: wordTube] Can’t resize videoThanks for the info. Word Tube is working great now. Hopefully, Mr. Rabe will fix the problem. This is a fantastic plugin!
Forum: Fixing WordPress
In reply to: [Plugin: wordTube] Can’t resize videoOops! The Shadowbox link above be this one.
Forum: Fixing WordPress
In reply to: [Widget Logic] Conditional check parent category help!It’s working for me too! Thanks to both of you. I an using it for placing sidebar category menus on certain pages.
BTW, I found a plugin that makes using sidebar category menus a whole lot easier called Extended Categories. It allows selecting of a category or categories for display instead of getting all of them as with the standard WordPress category widget and you can choose to display empty category items if you want.
Widget Logic and Extended Categories together are a dynamite combination!
Forum: Plugins
In reply to: [Plugin: eshop] not sending auto-confirmations of orders to purchasersIt is exactly like that: [path}/wp-admin/admin.php?page=eshop_templates.php&template=3#edit_section but when I click on it, I am returned here: [path]http://wp-admin/themes.php?page=thesis-design-options&updated=true.
I have deactivated the Automatic Payapl email option until I get this worked out.
Forum: Plugins
In reply to: [Plugin: eshop] not sending auto-confirmations of orders to purchasersI believe I am having a similar problem since upgrading to 3.1 this morning. Some customers are reporting a blank email.
On the “eShop Email Templates” page, you need to activate the payment choice email such as Paypal. It was not activated when I checked it just now and I have activated it. We’ll see what happens.
BTW, on the “eShop Email Templates” page, it does not allow you to edit the templates. If you click on a template in order to edit it, you are returned to the WP admin page.
Forum: Fixing WordPress
In reply to: Eliminating Space at top of eShop pagesThanks for the feedback. I will go see if some other plugin is interacting with eShop.
Forum: Fixing WordPress
In reply to: Eliminating Space at top of eShop pagesAny help with the exact CSS would be appreciated. This empty space is consistent on all store pages.
Blue Yonder Ranch Store The space at the top of this page is caused by the shortcode [eshop_show_product id=’xxx,yyy’]. When I remove it, the space goes away.
Thanks for your help. I really appreciate it.
Forum: Fixing WordPress
In reply to: [Plugin: eShop] How do i change “Continue Shopping”Thanks. FWIW, the existing link is entirely suitable if the whole website is a store but the store I’m setting up is only a piece of a website and when a customer wants to “continue shopping”, presumably that means they want to stay within the store part.
OK, now I want to use Widget Logic to select a category page and all the posts in that category.
When I use ‘is_category(4)’, it puts the widget on the Category page but not on the posts in that category.
Oops! I answered my own question. This should work:
‘is_category(4) || in_category(‘4′)’
Actually, I copied the code I used from the WordPress – Plugin Directory – Widget Logic – Other Notes page that reads as follows:
Examples:
is_home()
!is_category(5)
is_single() && in_category(‘baked-goods’)
is_page(‘about’)
current_user_can(‘level_10’)
global $post; return ((is_page(‘home’) || ($post->post_parent==”13″));After removing the extra bracket, IT WORKED! Thank you very much. I needed the logic to include the parent page so the final version reads likes this:
global $post; return (is_page(‘home’) || is_page(13) || ($post->post_parent==”13″));
Thanks again. Widget Logic is wonderful!
The text in the ‘Widget logic’ field can currently be full PHP code.
I’m still trying to get this to work. I am running WordPress 2.7, Thesis 1.3.2, Widget-Logic 0.4.4
When I put ‘global $post; return ((is_page(‘home’) || ($post->post_parent==”13″));’ (without the ticks) into widget-logic, I get the following error message:
Parse error: syntax error, unexpected ‘;’ in /(website address)/wp-content/plugins/widget-logic/widget_logic.php(132) : eval()’d code on line 1
Can I split some part of the command to an external php file in order to get this to work?