Aaron Ware
Forum Replies Created
-
Forum: Plugins
In reply to: [Toggle wpautop] Syntax Error on Line 187No problem! I’m going to update the build script to validate on older versions so that doesn’t happen again! Sorry for the inconvenience.
Forum: Plugins
In reply to: [Toggle wpautop] Syntax Error on Line 187@hanturbo @jerryrcole Hey guys. I apologize. It looks like PHP Storm automatically converted
array()into[]within the plugin which isn’t compatible with php 5.3.You can definitely do that.
You can actually see an example of doing a query in the FAQs sections of this plugin.
You’ll just need to query multiple taxonomies.
By default the post type spotlight has it’s own taxonomy “pts_feature_tax”.
There is a great example of taxonomy queries in the codex below
Below is an example snippet of querying posts within multiple taxonomy
$args = array( 'post_type' => 'post', 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'category', 'field' => 'slug', 'terms' => array( 'awesome', 'sauce' ), ), array( ‘taxonomy’ => ‘pts_feature_tax’, 'field' => 'slug', 'terms' => array( 'featured' ), ) ), ); $query = new WP_Query( $args );Just note that you would want to pull in the correct taxonomy/term combo for your needs and also make sure you are querying against the correct post type.
Hope that helps!
Forum: Plugins
In reply to: [Linchpin - PrevNextPage] Shortcodes Not Working – Help Appreciated!@gwstanto there could be a few things going on here. The plugin hasn’t been updated in a while. But I might be able to help you out.
Can you give me an idea of what your page hierarchy? (example below) That way I can try to reproduce it. You can always email me also if you want ware.aaron [at] gmail.com if you don’t want to share it publicly
Example:
Parent -> child -> child -> child --> grand child --> grand child --> grand child --> grand child -> child -> child --> grand childForum: Plugins
In reply to: [Toggle wpautop] Only works on the first paragraphHey @kelly3k9.
The plugin’s functionality is to disable WordPress from automatically adding paragraph tags to your Post Content. It does not however remove any paragraph tags you may have already set up or explicitly defined.
You can view the text tab within the post editor to see if you already have some html defined for it.
But what you described in your post. Seems like the plugin is actually working.
Forum: Plugins
In reply to: [Toggle wpautop] Bug in plugin with Post CompareHey Lou,
The plugin is very minimalist on how it functions. We’re you able to reproduce it?
Additionally did you have any other plugins installed at the time? Our team has the plugin installed on easily 40+ sites, including multisite installs and haven;t seen this reported yet.
Any additional details would be greatly appreciated.
Did you have anything in the logs? How did you know/confirm wpautop caused the memory consumption and the resulting server crash?
Hmm that makes sense. I was experimenting w/ symlinking /blog/ to another vhost where WordPress is installed in the root technically. That’s kind of a bummer, but such is life. Thanks for the quick responses.
Hey Ron @wpmuguru thanks for the reply.
Understandable that it doesn’t work with the domain mapping plugin out of the box (Again I think it’s probably due to that /blog I am appending to the “domain”. But it seems like it would potentially be possible with domain mapping along w/ an updated .htaccess file?
Possibly adding /blog based on http_host within rewrite conditional? I don’t think I can do a conditional RewriteBase
Any shove in the right direction would be greatly appreciated.
Forum: Plugins
In reply to: [SAML 2.0 Single Sign-On] Existing User Password Check FailingActually nevermind you resolved this for our team over twitter. Here is the paste bin that could possibly be useful to other users http://pastebin.com/NvFbL8M6
Forum: Plugins
In reply to: [Nextend Social Login and Register] Login error!That’s not a plugin error. That sounds like your SSL certificate has been setup incorrectly.
Forum: Plugins
In reply to: [Responsive Page Tester] A little flawThanks @philipshambrook I’ll take a look. By chance can you possibly provide a screenshot of what you are seeing?
I’m pretty sure I understand what’s going on.
We’re adding in a few features and I’ll make sure we check into this.
Thanks for the feedback
Forum: Plugins
In reply to: [Linchpin - PrevNextPage] Append Label?Hey @rae-nester I haven’t forgotten about you! Just been swamped. I still have you in the queue
Forum: Plugins
In reply to: [Linchpin - PrevNextPage] On my template the plugin not workHey @checevo. Need a bit more context. How are you pages structured/organized within the WordPress admin? It’s hierarchy based. The plugin doesn’t split up a VERY long page of content into multiple pages (if that’s how I understand you are using it). It simply takes al the sibling pages and creates next and previous links to those sibling pages.
Example (in the admin if you had your pages set in this structure)
- My Section
- My child page 1
- My child page 2
- My child page 3
And let’s say you are on Page 2. Your [next_page_link] Would link to page 3 and [previous_page_link] Would link to Page 1.
Depending on settings you can have it crawl out to the parent pages as well (though not typical). Additionally it the shortcode can loop around
Forum: Plugins
In reply to: [Linchpin - PrevNextPage] Append Label?I see what you’re saying.
I could see about adding in a filter that you could add to your theme. When I originally wrote it I didn’t put any filters in place.
That should allow you to change the output to what ever you’d like.
When I write it up I’ll provide an example as well.
Forum: Plugins
In reply to: [Linchpin - PrevNextPage] On my template the plugin not workHey @checevo! Sorry I didn’t have a filter on the plugin to get notifications.
Are you utlizing this shortcode within “The Content” or are you putting it directly into your page template?