chriscarvache
Forum Replies Created
-
it was a minute ago. I switched it over in order to allow MailChimp access to it. Its now in secure mode.
It looks like the its the entire RSS feed being blocked. MailChimp requires a feed address.
Which URL are you referring to? The feed URL? If so its https://newleafwebsolutions.com/feed/
Not sure how I resolved the first time but seems its happening on another site. No single quote characters in the Post Title / name. Just seems like BPS Security is blocking MailChimp from the feed.
Forum: Plugins
In reply to: [WooCommerce] Other People's Information in Shipping ScreenAlso noted that this happened when billing / checkout page was RELOADED.
Forum: Hacks
In reply to: News page re-directing to Home-pageSure… Try this plugin.
Forum: Hacks
In reply to: How come shortcode functions can't be pluggable??Okay cool. Looks good to me!
Forum: Hacks
In reply to: display_name max lengthNot true at all…
Forum: Hacks
In reply to: How come shortcode functions can't be pluggable??The code I was using looked like this…
add_shortcode ('my_custom_shortcode', 'my_custom_shortcode_function'); if ( !function_exists('my_custom_shortcode_function') ) { function my_custom_shortcode_function() { echo 'This works'; } }
If you declare a shortcode like this it won’t work.
I suppose I could use the
remove_shortcode()
function. I didn’t even think of that. Thanks for good feedback and suggestion but, that doesn’t answer my question.Why can actions be pluggable but shortcodes can’t?
It just seems simpler to me to override a function in a child theme rather than have to remove the shortcode and redeclare it. Although its only 2 more lines of code, its STILL 2 more lines of code. I’m just looking for the logic behind why it won’t work if you declare the shortcode as mentioned.
Forum: Hacks
In reply to: change select box to ajax in admin-users areaAlbeit this isn’t exactly what you need. But the patch would allow you to develop an AJAX solution.
Forum: Hacks
In reply to: change select box to ajax in admin-users areaThis doesn’t exist yet… But here’s a patch that would be used to hi-jack the wp_dropdown_users function. At this point you would HAVE to modify the core to do this.
Forum: Hacks
In reply to: In Need of a Single-Field Contact FormForum: Hacks
In reply to: Simple IntranetThis is great!
Forum: Hacks
In reply to: display_name max lengthI believe that the appropriate length would be stored somewhere in the DB Schema.
Check the PHP reference to see how to do this…
Forum: Themes and Templates
In reply to: how to remove an action via functions.php in a child theme?Also… Just an observation…
Styles shouldn’t be declared in a wp_print_styles action. It should be declared using wp_enqueue_scripts.
See this article for more…