tradingmetro
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: share user cookie between two blogs within same domain.Hi macbis,
I followed your instructions, but when I try going to the second admin area, I get a “Please log in again” message.
Are you also supposed to copy the LOGGED_IN_KEY and NONCE_KEY so both are identical on each blog?
Also is there a specific order that these define codes need to be placed?
Forum: Themes and Templates
In reply to: wp_list_bookmarks and RSS Address outputContrary to stvwlf, I’ve found a way to output the RSS feed URL.
https://outthinkgroup.com/2009/01/14/custom-wordpress-arrays-creating-a-favicon-fueled-link-list/
This post was very useful.
Instead of “wp_list_bookmarks”, use “get_bookmarks” and use a foreach loop with link_rss.
Full code:
<?php $bookmarks = array(); $bookmarks = get_bookmarks('category=52&orderby=notes'); foreach ($bookmarks as $bookmark) { $rss = $bookmark->link_rss; ?> <li><a title="<?php echo $bookmark->link_name; ?>" href="<?php echo clean_url($bookmark->link_url); ?>" target="_blank"><?php echo $bookmark->link_name; ?></a> <?php if ($rss != "") echo '<a href="'.$rss.'"><img src="IMAGE URL" alt="RSS" /></a>; ?></li> <?php } ?>
Forum: Plugins
In reply to: [Plugin: Widget Logic] widget logic an is_page_template(‘category-1.php’)Thank you for this post! This solved a few problems!
wp_reset_query(); was needed.I think, for the future, I’ll modify query_posts() to WP_Query.
Forum: Fixing WordPress
In reply to: [Widget Logic] Conditional check parent category help!This works well if you’re on single posts.
But what about descendent category pages?Maybe modifiying the “post_is_in_descendant_category” function from the codex would be the simplest.
Any help would be appreciated.
Forum: Plugins
In reply to: Advanced Permalinks Wrong URL StructureI just made the mistake of installing this plugin on WP 2.7.1.
It’s no longer supported.I tried deactivating it, but I still got 404 errors.
The best thing to do, for now, is to set permalinks to “Default” and not use a “Custom Structure”.
Unless anyone knows of a way to default the WordPress permalinks while removing the Advanced Permalinks plugin.
Forum: Plugins
In reply to: Remove parent category from PermalinkI’d like to remove all parent categories altogether.
So in the first example, it should just show:
https://example.com/recipe/If anyone can find a solution, that’d be great!
Just looked at the admin area of Smart YouTube. You can turn off related videos on that page.
Forum: Fixing WordPress
In reply to: Issue with Title Tag for Post Page (Front Page is Static)We have also experienced the same issue.
Someone should put this on the tracker.Cosign this.
Would be a great addition.Forum: Plugins
In reply to: [Plugin: eShop] Feature RequestsHi elfin,
Thanks for the quick reply.
For #2, just tried the “Downloads only” option and it works fine!
Thanks for that. Although technically speaking our products are not “downloads” per se but are service-permissible.For #3, I must apologize regarding my ignorance! The widget works fine. I’ll see what I can do for customization on this.
For #5, you make a good point. I was just thinking from an automation perspective of whether some kind of backend programming could be done though to render this (kind of like Amazon). Probably can, but probably a lot of work as well!
—
Once again, thanks for creating such a robust plugin.
By “robust”, I mean it is so clean and a pleasure to work with. Although it has more features, WP e-Commerce is a nightmare.
If I have any other thoughts for new features, I’ll post them here.
Forum: Plugins
In reply to: [Plugin: eShop] Feature RequestsAnd another request!
(5) Create “customers bought these related items” functionality as a display option in the “Product Entry” panel
This one might be tricky…
Forum: Plugins
In reply to: [Plugin: eShop] Feature RequestsOne other request:
(4) Consolidate shopping cart and checkout pages
This is another thing that would be nice to add that borrows from WP e-Commerce.Forum: Fixing WordPress
In reply to: [Plugin: eShop] Admin area problemsYou’d also want to do the same fix above for “eshop_discount_codes.php” and “checkout.php”.
Will update this thread accordingly if I find other similar problems.
Forum: Plugins
In reply to: [Plugin: eShop] Shortcodes not workingWow! That was fast!
So stupid… I forgot to tick “Stock Available”
That did it! ??
Forum: Plugins
In reply to: [Plugin: eShop] Shortcodes not workingAlso I want to understand the design behind eShop.
Are we supposed to see the product SKU after publishing if we add a “Product Entry” for it?
Or are we supposed to add the manual shortcode for it on the product page itself?