WebbleWabble
Forum Replies Created
-
I am using woocommerce and have set up a user role that allows someone to sign up and add their products to sell on my site. I would like to offer the ability for that person to see the Analytics and reports tab in the backend for their products under their account.
Yes, I read that but can a vendor only see their analytics are will they see everyone’s analytics? I should have been more specific.
thank youI don’t think it is going to work because there are over 300 domains it would need to be installed on.
Thank you for your time.Will this work with Multi-site? I would need the price for unlimited.
This is the other plugin I was talking about. https://formidableforms.com/
Thank you.- This reply was modified 2 years, 8 months ago by WebbleWabble.
- This reply was modified 2 years, 8 months ago by WebbleWabble.
Forum: Fixing WordPress
In reply to: Limit Gutenberg Page/Post title charactures@mrtom414 I am trying to limit the post url and the title on the backend for a post or page. I should have explained that better. Any ideas on that?
Forum: Fixing WordPress
In reply to: How to reorder Page/Post Settings@sterndata Is there a way I can add sorting to all of the panels in the Page/Post Settings? This way I can arrange all of the panels in the order I need them.
Forum: Fixing WordPress
In reply to: How to reorder Page/Post Settings@sterndata Thank you I posted to the link you suggested.
Forum: Fixing WordPress
In reply to: How to reorder Page/Post Settings@sterndata I tried the function you suggested with no luck. I have it at the bottom of the page ( using code similar to what you suggested ) but I would like to also be at the bottom of the Page/Post Settings.
- This reply was modified 2 years, 9 months ago by WebbleWabble.
- This reply was modified 2 years, 9 months ago by WebbleWabble.
When I select the new price it does not add the product price in my dropdown and it also does not show the total below that. I think it is because I keep getting this error,
Uncaught SyntaxError: Unexpected token u in JSON at position 0 at JSON.parse (<anonymous>) at Function.o.parseJSON (jquery.min.js:4) at HTMLDivElement.<anonymous> (nm-conditional.js:26) at Function.each (jquery.min.js:2) at o.fn.init.each (jquery.min.js:2) at HTMLSelectElement.<anonymous> (nm-conditional.js:24) at HTMLSelectElement.dispatch (jquery.min.js:3) at HTMLSelectElement.r.handle (jquery.min.js:3)
Any help fixing this would be much appreciated.
Is anyone else having this issue with AAM When you update to the latest version of wordpress?
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Select filter option Nothing happensSorry about that, what I wanted to ask is if there was a way to filter by more than one attribute? Also When I add the widget it will not show up on the home page?
I am looking for something similar, I need to allow access to a user to edit one custom post type page. Does anyone have any ideas on how to accomplish this? Is there a plugin that would work for this? I have tried role scoper but I could not get it to work. I also tried Advanced Access Manager but could not get it to work.
sumonbdinfo,
this should work for you
<?php echo do_shortcode('[products orderby="category" order="desc"]') ?>
or
`<?php
$args=array(
‘post_type’ => ‘products’,
‘orderby’ => “category”,
‘order’ => ASC,
‘caller_get_posts’=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
echo ” . $type .”;
while ($my_query->have_posts()) : $my_query->the_post(); ?><ul>
<li><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></a></li>
<li><?php the_excerpt() ?></li>
</ul>
<?php
endwhile;
} //if ($my_query)
wp_reset_query(); // Restore global post data stomped by the_post().
?>`
the first example is off of woocommerce site. The second way you will have more control over how things display you can also call in the thumbnail by using by<?php the_post_thumbnail(); ?>
You will want to set the size of the thumbnail to fit what you are looking for.Hope this helps