chocks
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Bulk Discount QuestionHi Alex, thanks for the plugin!
I guess I wasn’t using the rules properly ??
It’s working like a charm.Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Bulk Discount QuestionHi there, I’ve setup a rule to provide a % discount on products on 2 different categories, but when I add products of different categories (including the ones that I’ve added the rule to) to the cart all of them gets the discount.
Is this a known bug?
Thanks
jForum: Plugins
In reply to: [OptionTree] From 2.1.4 to 2.2.2 / Call to undefined function ot_get_option()Changed to 10 and that did the trick. Thanks!
I went back to version 3.7.4.3 and everything is working fine, as it was before updating.
I got it after network activate (wp ms). To see if I could get it running again I enabled on a per site basis and still got me that error. May be because it’s Xampp running it?
Forum: Plugins
In reply to: [WP-Polls] WP-Poll issuesLester, could you try this patch?
https://www.uv.mx/personal/gvera/wp-polls-wordpress-multisite/Forum: Plugins
In reply to: [WP-Polls] WP-Poll issuesI think I’ve found a workaround: do not network activate the plugin, just install it; go on each site and activate it. That should do the trick.
I’m running it on my MS install and believe me: it works “just fine”. Every subdomain has it’s own working instance of Adrotate and they work independently from each other. Have a look yourself if you’d like: https://pilar.vozoi.com, https://saavedra.vozoi.com, https://lacarlota.vozoi.com
So I’m guessing you don’t want to explore the export/import possibility, right? I’ll see if one of my devs can have a look at it.
Thanks anyway!
J
Forum: Requests and Feedback
In reply to: New media upload window could be improvedAs technabob said, these two things would sort out the UX when dealing with the media:
1) Default to Upload Files instead of Media Library
2) Default to only files uploaded to the current post after uploading images.Everything else it’s great IMO.
Forum: Networking WordPress
In reply to: Wildcard AlternativeYeah, like Mika said, you just need to create each subdomain to mirror the domain. That’s it ??
Actually it’s working just fine on a MS environment: each site with it’s own running AdRotate instance.
The only thing I’d like to see is an export/import tool for the ads/blocks/groups which will not only benefit my particular scenario but multiple regular cases where you’d like to take the data with you to another install, etc.
Thanks for the reply!
Forum: Requests and Feedback
In reply to: New media upload window could be improvedThe question (not by me) on Stack Exchange about how to change the default-view of media library
Forum: Requests and Feedback
In reply to: New media upload window could be improvedYes! this is what I’d LOVE TO CHANGE: the default for the library is now “all media items” when it really should be “uploaded to this post” I’m trying to find a hook or something cause it’s not straight forward for the user.
Everything else: THAKS WP team ??
There are certain areas for improvement but right now I’d like to ‘fix’ the default library.Hey, thanks for posting your solution. Is there a chance to make that conditiona placeholder a php template tag?
ie.
<?php if($event->has_att_premium) :?> stuff <?php endif,?>
thanks again,
Joaquin
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] Looping the loop.. reversed?Thanks for this scribu!
I ended up doing this:<?php $offices_shown=array(); $connected_offices = p2p_type( 'jobs_to_offices' )->get_connected(); $show_offices = new WP_Query( array( 'post_type' => 'offices', 'nopaging' => true, 'connected_type' => 'jobs_to_offices', 'connected_items' => 'any', 'connected_direction' => 'from' ) ); $i=1; while ($show_offices->have_posts()) : $show_offices->the_post(); $office_id = $post->ID; if (!isset($offices_shown[$office_id])) : $offices_shown[$office_id]=1; ?> <li class="drop-list"><span><?php the_title();?></span> <ul class="accord-list"> <?php $connected = p2p_type( 'jobs_to_offices' )->get_connected( $post ); while ( $connected->have_posts() ) : $connected->the_post(); ?> <li><a href="<?php the_permalink();?>"><?php the_title();?></a></li> <?php // Prevent weirdness endwhile; wp_reset_postdata(); ?> </ul> </li> <?php endif; endwhile; ?>
I had to change the direction you set to “from” as the other way around it would give me a list of jobs with the connected offices and I wanted to list the offices with the connected jobs. Then I had to set an array to hide the offices displayed as it would repeat for some reason an office with jobs. In the end I got what I was looking for although the ‘array hack’ isn’t my favorite approach!
Thanks a lot,J