clickxclick
Forum Replies Created
-
Brilliant! Thank you very much ??
Sorry about that. https://lanasshop.com
Forum: Fixing WordPress
In reply to: [WP E-Commerce] Main product image isn't showing on product pageIn the theme folder single_product.php
I’m still having problems with the gallery thumbnails though.
Example: https://lovestamp.com.au/products-page/baby/baby-spork-set/
I got gold cart installed and the grid view is working fine now.
Thanks for the reply Andrew!
It seems that in the settings Catalog View is set to “Default View” and in the select list “List View” and “Grid View” are greyed out.
How would I activate it for the new domain?
As for the themes, I haven’t changed any of that. This is strictly a migration and I haven’t really made any changes.
I don’t seem to see a wpsc_gc_view_mode cookie when checking my cookies through Firefox.
Forum: Fixing WordPress
In reply to: [WP E-Commerce] Broken product images / migration to new serverOkay, so I had to manually set the upload_path in the config file.
Why is the config file titled wp-shopping-cart.php ?!?!
Forum: Fixing WordPress
In reply to: [WP E-Commerce] Broken product images / migration to new servermygreenhosting, correct.
I just can’t figure out where the pathing is being set! ??
I’ve seen that placeholders page but the problem is that the Categories pages only accept Category related placeholders (which are actually not listed on the placeholders doc you linked).
Is there a way to make the Category pages accept Event related placeholders?
I’m also having this problem.
When I add the code from your last post it shows up as the raw characters and are not converted into the event url, name, date and time.
Here’s my single category page code
#_CATEGORYNOTES <h3>Upcoming #_CATEGORYNAME</h3> <ul> <li><a href="#_EVENTURL">#_NAME - #M #j, #Y at #g:#i #A</a></li> </ul>
and a link to an example page:
https://pathwithart.org/v2/events/category/access-art/Forum: Plugins
In reply to: [Plugin: Events Manager] Creating custom scope for Events widgetsFor anyone who might read this later and wonder abour my last question:
I used array_splice() to insert a new value to the $scopes array at a specified index.
add_filter( 'em_get_scopes','my_em_scopes',1,1); function my_em_scopes($scopes){ $my_scopes = array( 'this-week' => 'This Week' ); array_splice($scopes, 5, 0, $my_scopes); return $scopes; }
It adds the array $my_scopes to the $scopes array at position 5 with a length of 0.
Thanks again for your help Marcus and for writing such a great Event Manager. I have definitely been spreading the word.
Forum: Plugins
In reply to: [Plugin: Events Manager] Creating custom scope for Events widgetsSuper stupid mistake on my part. I put it in the wrong functions.php file because I was working on sites for two clients at the same time.
Thank you very much for verifying my code!
Is there a way to sort the new scope into the position of the list that I would like? (Between “Tomorrow’s events” and “Events this month”) If not, that’s totally fine.
Forum: Plugins
In reply to: [Plugin: Events Manager] Creating custom scope for Events widgetsCorrect.
This Week is not showing up as a scope drop down option for the widget.
Here’s what my sidebar scope drop down looks like:
https://lostsoundtapes.com/sidebar.jpgForum: Plugins
In reply to: [Plugin: Nextgen Galleryview] Custom description placement andSolved my own problem:
I cut this line:
<p><?php echo html_entity_decode ($image->description); ?></p>
Deleted the entire div.panel-overlay and then just pasted that line directly under the code for the full size image. I don’t know why I couldn’t get that to work earlier.
The wonder of taking a break and coming back with a fresh brain!