Jason Robinson
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Content Shortcodes] use tags to find postsI too am very interested in using this plug-in with tags=”tag1,tag2″
Any ETA?
Hi Cory
I tried this and duplicator fails on restore when setting web.config to read-only. It complains about not being able to extract certain files. The error goes away when I turn off read-only.Forum: Plugins
In reply to: [Check and Enable GZIP compression] unable to enable it,Things seem to be working with this new version. Thank you!
Forum: Plugins
In reply to: [Check and Enable GZIP compression] unable to enable it,I do not use Apache, this is on IIS
Forum: Plugins
In reply to: [Check and Enable GZIP compression] unable to enable it,Yes, it does and checkgzipcompression.com verified that the preview URL was indeed sending a gzipped page.
Forum: Plugins
In reply to: [Check and Enable GZIP compression] unable to enable it,I am having the same issue. On some sites on the same server, GZIP remains enabled, but on this one:
I enable it, it shows as enabled, I click to another page in admin and I get the warning that it is disabled again. I used your tool to check externally and it also shows that GZIP is disabled.
Forum: Plugins
In reply to: [Media Tags] "You do not have permission to manage these items"thank you deepbevel. This gets me what I need for now, I hope they do a quick interim release for WP 4.4 core to address this issue, as it is effecting many plugins, including wooCommerce.
https://www.ads-software.com/support/topic/you-are-not-allowed-to-manage-these-items?replies=8
and
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] swipebox mod questionOK so I went about it completely differently, and got the results I was looking for. Will mark this as closed, and open a new thread for another question ??
For those who are looking to modify swipebox look/feel, keep in mind the !important declaration when creating your own CSS, it will override the plug-ins default CSS, also make sure you disable SVG!
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] swipebox mod questionAny suggestions for manipulation of the DOM after swipebox is fired then?
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] swipebox mod questionHmm, it looks like the version of swipebox that the plug-in is using it old(er) and doesn’t support that method. When I replace jquery.swipebox.min.js with the latest version, everything breaks ??
Thoughts?
Forum: Plugins
In reply to: [Media Tags] Custom Taxonomy?$args = array( 2 'post_type' => 'feature', 3 'orderby' => 'menu_order', 4 'order' => 'ASC', 5 'tax_query' => array( 6 array( 7 'taxonomy' => 'movies', 8 'field' => 'id', 9 'terms' => 10 10 ) 11 ) 12 ); 13 $my_query = new WP_Query($args); 14 while ($my_query->have_posts()) 15 { 16 $my_query->the_post(); 17 //(..your code..) 18 } - See more at: https://www.nsp-code.com/advanced-post-types-order-api/sample-usage/#sthash.d9fj9c8I.dpuf
Forum: Plugins
In reply to: [Media Tags] Get tags into class?thank you for the pointer for the helper functions, definitely been spending some time in there today ??
Forum: Plugins
In reply to: [Media Tags] Get tags into class?ok, I need to stop copying/paste!
"'.the_terms($post_item->ID,'media-tags','',' ','').'"
is working a lot closer to what I need. Now to get rid of the linkage!
I ended up using
https://codex.www.ads-software.com/Function_Reference/wp_get_object_termsand looping through to get the exact output I wanted.
Forum: Plugins
In reply to: [Media Tags] Get tags into class?and this doesn’t work either
class="'.the_terms($post_item->ID,'taxonomy=media-tags','',' ','').'"
Forum: Plugins
In reply to: [Media Tags] Get tags into class?I should note than the above example was trying to extract the IDs of the tags so I could then get the name/slug of each, I’ve also tried:
class="'.the_terms( $post->ID, 'attachment', '', ' ' );.'"