genevishgraphics
Forum Replies Created
-
Hey Dave – so I used the conditional is_single() and that shows the new widget under the directory listings but does NOT show them on regular post pages. Not sure why since the wordpress conditional is for all posts.
Forum: Plugins
In reply to: [Hotspots Analytics] Plugin Affecting WordPress dropdownsDeactivating and reactivating the plugin gives me this error
The plugin generated 160 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin
Forum: Plugins
In reply to: [HMS Testimonials] Testimonials Display OrderNM – I see the update, thanks for the quick replies- great plugin!!
Forum: Plugins
In reply to: [HMS Testimonials] Testimonials Display OrderOh ok – that was it, and now I am getting the blank page, how do I get the patch/update? Is it out yet?
Thanks!Forum: Plugins
In reply to: [HMS Testimonials] Testimonials Display OrderThey arent – I have two different groups, but I am only using one in this page
[hms_testimonials group=”1″ template=”7″]Forum: Plugins
In reply to: [HMS Testimonials] Testimonials Display OrderThe problem is I have them set to a specific order via drag and drop – that is the order I want them displayed on the site, but no matter what setting I choose, via id asc/desc
or display, they dont display as they are via drag and drop. If I want them to display exactly how I have them ordered via drag and drop, which setting do I choose? I think I have tried them all at this point, and none of them displayed them properly 🙁Could this be the problem?
I removed it and still had the erroradd_filter( 'woocommerce_currencies', 'add_my_currency' ); function add_my_currency( $currencies ) { $currencies['ABC'] = __( 'HKD', 'woocommerce' ); return $currencies; } add_filter('woocommerce_currency_symbol', 'add_my_currency_symbol', 10, 2); function add_my_currency_symbol( $currency_symbol, $currency ) { switch( $currency ) { case 'ABC': $currency_symbol = 'HKD'; break; } return $currency_symbol; }