wyclef
Forum Replies Created
-
Forum: Plugins
In reply to: [IP Geo Block] When you were blocked after upgrading to 3.0.7What is the status of this? I still have US,ZZ in my whitelist.
Forum: Fixing WordPress
In reply to: Troubleshooting Error Log – Connection ErrorsHmmm. This is under a shared hosting account at Dreamhost. Wondering if it has to do with general server load or something. I don’t believe I can really access the php.ini settings or anything like that.
Forum: Fixing WordPress
In reply to: Troubleshooting Error Log – Connection ErrorsThat was from the server error log.
Forum: Developing with WordPress
In reply to: Updating old PHP for WP Title TagHmmm… is there a boilerplate title tag example you could point me to that might help me rebuild this? This is what I’m thinking. I think their home page title is different? They are doing something with !is_front_page that I am missing? It seems as though for is_home they are adding the site description? Ugh.
<?php function getPageTitle() { global $post; if (($post->post_parent != 0) && !is_search()) { $title = ' — '.get_the_title($post->post_parent).' › '.get_the_title(); } else if (is_single()) { $title = get_the_title($post->ID); } else if (is_404()) { $title = ' | Page Not Found'; } else { $title = ' | '.get_the_title(); } return $title; } ?> <title><? bloginfo('name'); ?> <? echo getPageTitle(); ?></title>Forum: Plugins
In reply to: [MCE Table Buttons] Class name property dropped?Wondering if there is any info about adding class name to table anywhere?
Thanks for the quick response. I think I will continue using .htaccess but review BBQ Pro and all of the features it offers in the interim to see if it would make sense for me to upgrade. Thanks!
Forum: Plugins
In reply to: WYSIWIG Code Button Missing after updateBy ‘code’ I mean the source code button, not the code formatting button.
Forum: Plugins
In reply to: WYSIWIG Code Button Missing after updateThis is the code in my functions file that is having problems in 4.6.
// TinyMCE: First line toolbar customizations if( !function_exists('base_extended_editor_mce_buttons') ){ function base_extended_editor_mce_buttons($buttons) { return array( 'undo', 'redo', 'bullist', 'numlist', 'bold', 'italic', 'sub', 'sup', 'pastetext', 'link', 'unlink', 'wp_adv' ); } add_filter("mce_buttons", "base_extended_editor_mce_buttons", 0); } // TinyMCE: Second line toolbar customizations if( !function_exists('base_extended_editor_mce_buttons_2') ){ function base_extended_editor_mce_buttons_2($buttons) { return array( 'formatselect', 'charmap', 'spellchecker', 'code'); } add_filter("mce_buttons_2", "base_extended_editor_mce_buttons_2", 0); } // Add Buttons add_filter( 'tiny_mce_before_init', 'my_custom_tinymce' ); function my_custom_tinymce( $init ) { $init['apply_source_formatting']=true; return $init; }Forum: Plugins
In reply to: [IP Geo Block] Plugin Conflict with TinyMCE Templates 3.2.0As you said, this resolves the issue. Thanks!
Forum: Fixing WordPress
In reply to: Auto Populate MenuNo, I’m pretty sure I want wp_nav_menu. Currently I’m using it and it’s working fine as long as I use the manually populate it using the menu thing in the appearance admin area. I’m just looking to auto populate it so if I add a page I don’t have to manually add it to the menu.
If I check Automatically add new top-level pages to this menu it doesn’t seem to work.
Am I supposed to have something in functions more than
add_theme_support( 'menus' );Forum: Plugins
In reply to: [IP Geo Block] Plugin Conflict with TinyMCE Templates 3.2.0Well, in my setup I’m using TinyMCE Templates 3.2.0 because I’m working with an older WP build. I also had disabled the Plugins and Themes area options. Would you suggest I enable all of that and then set TinyMCE Templates as an exception?
If I try to update the Bad signatures query without checking the Admin ajax/post boxes, I get an unused error and am unable to do so. The only other plugin I could think that would maybe be causing issues here is WP Cerber, but it isn’t something I’m able to determine. If I deactivate WP Cerber I still run into problems.
I’ve since updated TinyMCE Templates to 3.4.0. Still the same problems.
Other plugins which could interfere are: Hide Admin Panel from Subscribers, Page Security & Membership, Peter’s Login Redirect, White Label CMS, and WP Author Slug.
Forum: Plugins
In reply to: [MCE Table Buttons] Class name property dropped?I found this extension but unfortunately it isn’t working for me.
https://github.com/Softcatala/mce-table-buttons-class/blob/master/mce-table-buttons-class.php
Forum: Plugins
In reply to: [IP Geo Block] Whitelisting IPsSeems to work fine, I’ve currently just set my IP and country (US) to whitelist… am just wondering if only through my IP is wp-admin accessible.
Forum: Plugins
In reply to: [Admin Menu Editor] Conflict with IP Geo Block?Thank you both for your quick response. I can confirm that the latest release of IP Geo Block does indeed fix this issue.
Forum: Plugins
In reply to: [IP Geo Block] Conflict with Menu Editor plugin?Ok thanks. FYI I have another post going on with the other conflicting plugin in case there is helpful information: https://wordpress.org/support/topic/conflict-with-ip-geo-block?replies=5#post-7694695