Mike Thone
Forum Replies Created
-
I had this same issue where prices on my WPEC price was displaying as:
from $0.00.Turns out that the products displaying this misleading price had some variations left in the trash with 0 set for price. Even though they were in the trash the wpsc_the_product_price(); function was grabbing it as the lowest price.
Fix: Empty the trash on the items in question.
Worked for me.Forum: Plugins
In reply to: WordPress Import Timed OutI found this: http://nick-hoffman.blogspot.com/2009/09/importing-large-wordpress-blogs.html but wasn’t sure where to edit the php.ini on a godaddy hosted site.
What’s working for me right now is to just keep refreshing the page. It seems to be uploading like 8 assets at a time. I can tell because the list that says “Media “DSCN0372” already exists.” gets a little longer each time. Far from perfect but after some frustration trying other things I’ll take it.
Forum: Plugins
In reply to: Restrict access so user can only submit changes for review, not updateinhouse, I think I know what you’re going for although I’m not exactly sure what you’ve already tried… If you create a new Contributor then they are only allowed to create a new post and submit it for Admin review. Once it has been reviewed the Admin can publish the post. After this step the Contributor can no longer edit the post.
If you are worried about the Contributor creating more than one post, you can be assured that the Admin will catch the post before it is published.
If you want the Contributor to have the ability to edit published posts you will need to extend functionality with a plugin. This one called Role Manager is pretty good:
http://www.im-web-gefunden.de/wordpress-plugins/role-manager/
As far as I know though, after giving the contributor the ability to edit published posts there is no way to Admin review again before the changes are published.I think your best bet might be to skip the plugin, give the businesses Contributor accounts, and have them make sure that the business info they list is correct before your Admin publishes. If they absolutely have to make changes, they can log-in and create a new post. At this point your Admin can erase the first listing, and publish the new one.
Forum: Fixing WordPress
In reply to: Caption not Working with ShortcodeI just took a look at the shortcoder plugin, and then checked back at your link. It looks like you fixed it. How did you get it to work?
Forum: Fixing WordPress
In reply to: Caption not Working with ShortcodeOh, and do it in your actual .php file. the WYSIWYG editor doesn’t allow the <?php — ?> tags by default.
Forum: Fixing WordPress
In reply to: Caption not Working with ShortcodeThe shortcode API only works by default when displayed with the_content, like when it’s within the loop. This might be whats not working for you. To get shortcode to work outside the loop you need to use
<?php echo do_shortcode('[yourshortcode]'); ?>So to get yours to work it should be something like this:
<?php echo do_shortcode(' [caption class="cap" align="alignnone" width="100" caption="Four Seasons"]<a class="events-img-link" title="Four Seasons Gallery" href="http://cobtree.com/new/photo-gallery/four-seasons-gallery/"><img class="events-img-link" title="Four Seasons Gallery" src="XXX" alt="Four Seasons Gallery" width="100" height="66" /></a>[/caption] '); ?>Basically, write the shortcode between the (‘ ‘).
I hope this solves your issue.Forum: Fixing WordPress
In reply to: Hide page on mobile themeI took a look at your mobile page with firebug and I was able to get the gallery link to disappear using display:none; when I edited the element.style (adds inline styling).
I did this first, then I read your post again. I think I know what you’re doing wrong. Your list item has (2) different classes in it: page_item, and page-item-61. Whenever there’s a space between words in the class attribute that means there’s more than one class. To make just the gallery link disappear you need to write:
.page-item-61 {display:none;}
That should work.