stowepro
Forum Replies Created
-
Forum: Plugins
In reply to: [Rich Reviews by Starfish] Javacript ErrorI too have the same issue (kind of). I don’t get the error message but I can not select the stars.
Forum: Themes and Templates
In reply to: Multiple Loops and offset posts in Category TemplateThank you @alchymyth for providing some amazing code. I was looking for this type of answer for days. You have saved me from some unneeded stress. : )
Bingo. That fixed it.
Thanks paulruescher. You are the best.
Actually the issue only happens when placing new products within shipp plugin.
I tried um commenting the code though the issue still seems to present itself. The only thing that seems to correct the issue is if I disable the wholesale plugin.
You’re right, it is a little buggy but I do appreciate your help.
thanks again.
@ Paulruescher,
A new problem just came up that wasn’t a problem before. The insert image now causes an error and won’t let the images upload. If I disable the wholesale plugin, it the image upload will work again.
Any ideas? Just a note, it was working fine before the suggested code change for the adminmenus.php.
Again thanks.
@ paylruescher,
Wow, that did the trick. Thank you for the code change. That worked perfectly.
Again thank you.
Crazy situation. I just noticed that the general wordpress settings disappears when I activate the plugin. Strange. any ideas.
I got it to work. Awesome. This is a great addition. I followed the same work configuration from this link. https://staging.edieandbup.com.au/
Create an account, sign in and look at all the setting to make sure your match just like this one and it will work like a charm.
I just installed removed the two lines of code listed by what Dalton Rooney said to do.
I have a product set to show a different prices if someone is a subscriber but for some reason it will not show. As a test I even made it if they were a wholesaler instead of subscriber but nothing shows on the site other then the price. I wanted to make it so that when someone logs in to the site that the prices will be different. As in member pricing versus non member pricing. I believe this plugin will do it however it doesn’t seem to be working.
Any ideas. I am using the latest wordpress and shopp pluggin if that helps.
Dalton Rooney, are you able to point me in the right direction?
Thanks
found some code that kind of works…
This is what it looks like…
<?php foreach( ( get_the_category() ) as $category ) { $the_query = new WP_Query('category_name=' . $category->category_nicename . '&showposts=10'); while ($the_query->have_posts()) : $the_query->the_post(); ?> <li> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" target="_parent" > <?php the_title(); ?> </a> <!-- #= --> </li> <?php endwhile; ?> <?php } ?>
It’s not perfect yet but its something..
I’m trying anything I can think of and if something hit and works, I’ll post.
This is how I setup your code… It did work but not any more and im scratching my head over it..
<div> <?php query_posts(array('category__in' => array($cat),'paged' => $paged)); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" > <?php the_title(); ?> </a> <!-- #=service-box END --> <?php endwhile; endif; ?> </div> <?php wp_reset_query(); ?>
When it was working it would show the articles within the boston category under the Additional Articles on a page like this..
https://jetsetlife.tv/destinations/boston/boston-nightlife/Again any help would be amazing. and if the above question could be done as well would perfect.
Thank you.
This was great and worked perfect until the latest update of wordpress that was released the the code…
<?php query_posts(array('category__in' => array($cat),'paged' => $paged)); ?>
… stopped working.
Any idea’s?
One of the pages that I have the code placed.
https://jetsetlife.tv/destinations/boston/boston-nightlife/There are 11 articles linked to the boston category.
i have another issue, we are wanting to also show every sub category within the Boston Root category something like..
Boston
— Boston Night Life
— Boston Restaurants
— Boston HotelsIs there a way to do this so that the page shows the articles within boston but also shows them defined within their subcategory list so.
(root category)Boston
— (sub category)Boston Night Life
—- (article) Boston night life is the hottest party town
—- (article) Boston knows how to party— (sub category) Boston Restaurants
—- (article) Boston Restaurants are the best
—- (article) Do you know where the Best Boston spots for Lunch?=====
Any help would be amazing.
Thank you.