Kyle H
Forum Replies Created
-
Hi, even after the recent update, your plugin is still submitting Elementor URLs.
This is a Global Widget in Elementor. Please fix.
Thanks!
Is GoDaddy still updating this Plugin for us resellers (I sure hope so)? I would also like to see if the above request is possible. I also have a lot of other suggestions if someone from the GoDaddy team would like to hear them, please contact me. Thanks. -Kyle
Forum: Plugins
In reply to: [Toolbar Remixed - Free] Settings Options: NoneThanks Randell. That def is the issue. Not sure why the developer has not put out a quick fix for this.
Instead of diving into the code and editing it I just renamed the folder of the plugin from “toolbar-remixed-free” to “toolbar-remixed” and this seemed to fix the issue.
Thanks again.
Forum: Plugins
In reply to: [Welcome Pack] Welcome pack not sending welcome message anymoreI would also love to see an update to this plugin. Thanks!
Forum: Plugins
In reply to: [Toolbar Remixed - Free] Settings Options: NoneSame issue here. Please fix 🙂
Forum: Plugins
In reply to: [Join My Multisite] Sub sites not allowing users to register blogOk, I understand that but at this time it lets them JOIN and CREATE on subsites. Do you know of anyway to not allow them to CREATE on subsites?
Forum: Plugins
In reply to: [User Role Editor] Hide Default User RolesVladimir,
I tried adding the following code to my themes functions.php file and got
if (!current_user_can('author')) { add_filter('editable_roles', 'exclude_role' ); public function exclude_role($roles) { if (isset($roles['author'])) { unset($roles['author']); } return $roles; } }“HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.”
Any ideas?
Oh, and this is what I see for the title code that is already in the header. This is what I was replacing with the code that you provided.
<title><?php wp_title(‘|’, true, ‘right’); ?> <?php bloginfo(‘name’); ?></title>
Ok, Well thanks but it still doesn’t seem to work for my themes.
I am using Artisteer 4.0 themes. I added the line above you told me to add to the top and also tried adding add_filter( ‘wp_title’, ‘bp_modify_page_title’, 16, 3 ) to bp-custom.php and changing it directly in the core file.. I did not see any changes to my member profile titles.
I am also still trying to get Yoast to work with BuddyPress pages. It seems that all of the BuddyPress pages have the same Titles instead of dynamically setting them based on the page they are on, IE: Profile page with members name in the title.
I tried changing add_filter( ‘wp_title’, ‘bp_modify_page_title’, 10, 3 ) to add_filter( ‘wp_title’, ‘bp_modify_page_title’, 16, 3 ) and it did not seem to work for me. It looks like it is still enforcing the Yoast SEO titles. I even tried adding add_filter( ‘wp_title’, ‘bp_modify_page_title’, 16, 3 ) to bp-custom.php.
Any ideas? I would love to be able to get SEO titles working on all my buddypress pages.
I also was having issues with the Comment Subscriptions page linking to http://mydomain.com/http://mrdomain.com/?page_id=9999999/. I fixed this temporarily by doing the following:
1. Go to /plugins/subscribe-to-comments-reloaded/ and edit the file ‘subscribe-to-comments-reloaded.php’
2. Around line 523 you will see:
‘guid’ => get_bloginfo(‘url’).’/?page_id=9999999′,
‘post_name’ => get_bloginfo(‘url’).’/?page_id=9999999′,Change this to:
‘guid’ => ‘/comment-subscriptions/’,
‘post_name’ => ‘/comment-subscriptions/’,Keep in mind that yours may be different depending what you named the page. What was happening is get_bloginfo(‘url’) was creating the blog URL but it seems that WordPress already knows to add your blog URL so there is no need for get_bloginfo(‘url’) before the page name.
Hope this helps as a temporary fix until the developer can release a fix.
-Kyle