Profiles

Bio

WordPress plugin developer.

Interests

PHP, javaScript, MySQL, HTML, CSS,

  • Member Since: March 27th, 2017
  • Location: The Woodlands, Texas
  • Website: stoneblue.com
  • Job Title: WordPress developer
  • Employer: StoneBlue.com
  • Find me on:
  • Wrote a comment on the post Proposal: Auto-Update Old Versions to 4.7, on the site Make WordPress Core:
    I would not be happy if a site I had set not to auto-update suddenly…

  • Created a topic, wpseo_metadesc filter, on the site WordPress.org Forums:
    If returning a custom meta description via the wpseo_m…

  • Posted a reply to How to add WWW to one of the domain of my multisite, on the site WordPress.org Forums:
    Do you mean searching on a site like dogpile or google?

  • Posted a reply to When do we need to make new plugins?, on the site WordPress.org Forums:
    I tell people that you create a new plugin when you want to add new…

  • Posted a reply to Beginner help with pagination, on the site WordPress.org Forums:
    There are some examples here https://codex.wordpress.org/Function_Reference/get_query_var#Examples in the codex on the use of get_query_var.

  • Posted a reply to Layered User Logins, on the site WordPress.org Forums:
    Instead of multiple logins for each I would try to use WordPress roles and capabilities.…

  • Posted a reply to update_post_meta update more than one post meta, on the site WordPress.org Forums:
    Wait what? I use update_post_meta quite a bit. What is meant by i'ts next adjacent…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    OK I just revisited this one tried using the slug by adding 'rewrite' => array('slug'…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    Thanks bcworkz and lannister, I could have made it easy on myself and just named…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    I'm on the fence about maintaining the old CPT name rules (stoneblue-thinkific) in the rules…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    Apparently order matters in the rules array. Changed the code to: public function rewrite_rules_array($rules){ $options…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    So I really thought I was finished after adding the new rules to the rules…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    What if I used the rules array and copied the entries with the CPT name…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    flush_rewrite_rules is being called on activate and deactivate and rewrite on init. I saw somewhere…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    Even though the rewrite rule may not be the correct one it should still be…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    I'm now using the post_type_link hook to modify the links which is really cool but…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    Now I want to provide the user the ability to choose the link structure for…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    Yes, this is exactly what I was seeing the 404 and only the template_include filter…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    Ugh, could this be because I failed to visit the settings - perma links admin…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    It's just not my day, that's all there is to it... Backing up a bit…

  • Posted a reply to add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    Thanks! I will try the {$type}_template_hierarchy filter now to explore that possibility. My goal is…

  • Created a topic, add_filter(single-{CPT}_template, on the site WordPress.org Forums:
    Good Afternoon, I'm having an issue where the CPT is …

  • Created a topic, This action will let you pay a deposit of, on the site WordPress.org Forums:
    I have a client using this plugin that would like to m…

  • Posted a reply to SOAP XML ns1, on the site WordPress.org Forums:
    I still have no idea how to do it within the PHP SOAP library so…

  • Posted a reply to SOAP XML ns1, on the site WordPress.org Forums:
    I have a similar issue now when calling a method that has parameters in the…

  • Posted a reply to SOAP XML ns1, on the site WordPress.org Forums:
    Hi Dion, I have: 'cache_wsdl' => WSDL_CACHE_NONE, in the instantiation of the soap client. Working…

  • Posted a reply to SOAP XML ns1, on the site WordPress.org Forums:
    At this point though I'm wondering since the online SOAP client at wsdlbrowser.com created the…

  • Posted a reply to SOAP XML ns1, on the site WordPress.org Forums:
    Got it working: I removed the soapvar from the header and just the PHP class.…

  • Posted a reply to SOAP XML ns1, on the site WordPress.org Forums:
    If I use the online https://wsdlbrowser.com/ and enter the WSDL is also creates XML withe…

  • Posted a reply to SOAP XML ns1, on the site WordPress.org Forums:
    Hi DionDesigns, Yes I'm using $client = new SoapClient($wsdl, array( 'trace' => 1, 'cache_wsdl' =>…

  • Created a topic, SOAP XML ns1, on the site WordPress.org Forums:
    Hello, I'm developing a WordPress plugin to access an…

  • Posted a reply to Custom Post Type and User Role, on the site WordPress.org Forums:
    I ended up using the pre_get_posts hook: $this->loader->add_action('pre_get_posts', $plugin_admin, 'query_set_only_author'); As time permits I'll clean…

  • Posted a reply to Shuffle.js with custom post archive, on the site WordPress.org Forums:
    I've been using: jQuery(document).ready(function($){ if($("#merchant_id_missing").length){ with good success to allow the use of $. Is…

  • Posted a reply to Integration angular widget with wordpress, on the site WordPress.org Forums:
    In the shortcode handler be sure to buffer up all your output then return it.

  • Posted a reply to Custom Post Type and User Role, on the site WordPress.org Forums:
    Actually just looking at the 'supports', probably don't need editor. A customer fills out a…

  • Posted a reply to Custom Post Type and User Role, on the site WordPress.org Forums:
    Pretty close to what I'm looking to achieve only one thing is that Merchant_1 is…

  • Posted a reply to Custom Post Type and User Role, on the site WordPress.org Forums:
    Actually this makes sense because I have the type set to 'post' I don't want…

  • Posted a reply to Custom Post Type and User Role, on the site WordPress.org Forums:
    I managed to obtain the opposite of my intent. An Author is able to see…

  • Posted a reply to Custom Post Type and User Role, on the site WordPress.org Forums:
    Thank you Mr Case I will check it out now. I've been through quite a…

  • Created a topic, Custom Post Type and User Role, on the site WordPress.org Forums:
    I'm working on a plugin that creates a custom post typ…

  • Posted a reply to show first 3 thumbnails of posts in different sizes, on the site WordPress.org Forums:
    Theme Handbook is a great place to start. Also learning PHP is important for this…

  • Posted a reply to wp-cron behaviour when there are multiple queued tasks, on the site WordPress.org Forums:
    I believe everything needing to run should run on a single page load or whatever…

  • Posted a reply to Problem with announce, on the site WordPress.org Forums:
    Are you referring to the length of the excerpt? If so have you considered the…

  • Posted a reply to create modules, on the site WordPress.org Forums:
    The way I learned the WordPress way is by installing WordPress with a default theme…

  • Posted a reply to Removing proudly powered by in footer, on the site WordPress.org Forums:
    I'm not familiar with that particular theme but look in similar template files as in…

  • Posted a reply to renamed wp-login.php, on the site WordPress.org Forums:
    If I go to wp-admin I get 404 page not found because I'm not logged…

  • Posted a reply to renamed wp-login.php, on the site WordPress.org Forums:
    I've done that in the past to hide the login but I'm not even concerned…

  • Created a topic, renamed wp-login.php, on the site WordPress.org Forums:
    Getting a lot of login attempts on a particular site t…

  • Posted a reply to wp_remote_post & Authorization header, on the site WordPress.org Forums:
    Oh WOW! Thanks Chris, Adding: SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1 to the .htaccess solved my test…

  • Created a topic, wp_remote_post & Authentication header, on the site WordPress.org Forums:
    Hi, I'm developing a plugin and have a need to post to…