rikengct
Forum Replies Created
-
Forum: Plugins
In reply to: [iThoughts Tooltip Glossary] error displaying tooltipthank you again.
I have updated to v1.1.4, but I do not see the buttons in the editor.
I’m using Divi 2.5.6Forum: Plugins
In reply to: [iThoughts Tooltip Glossary] Compatibility with SiteOrigin Page BuilderYes, I am using the Divi theme and have the same problem. Thank you for working on the fix so quickly.
I’ll try the non-glossary tooltips again then (the issue from my other thread that I am also happy you are looking into)
Forum: Plugins
In reply to: [iThoughts Tooltip Glossary] error displaying tooltipThank you so much again.
I will try to figure things out over here.
Unfortunately, I am not in control of how access is denied or allowed. i have had many fights with the people who are though, but they don’t see reason.
I will ask about allowing the exception.I tried inserting a non-glossary tooltip, but i couldn’t get it to work. I’ll try again I guess.
I’m using the Divi theme and wordpress 4.3
Forum: Plugins
In reply to: [iThoughts Tooltip Glossary] error displaying tooltiphi again.
is there a way to make it so that is does need access to /wp-admin/admin-ajax.php?
I’m pretty sure that must be the problem. My work won’t allow any access to the wp-admin from outside (even I cannot login from outside (which is why I had to wait until monday to test your fix).Forum: Plugins
In reply to: [iThoughts Tooltip Glossary] error displaying tooltipthank you so much!
I sincerely appreciate your efforts to help me solve this problem.
my function is in the functions.php file, and I replaced it with the one you provided, but I still get the same error. I am not a very experienced coder. I am not sure what AFAIK is.Any ideas why wordpress isn’t catching it in functions.php?
could another function be interfering?
Just before it is this function:if ( !function_exists( ‘chld_thm_cfg_parent_css’ ) ):
function chld_thm_cfg_parent_css() {
wp_enqueue_style( ‘chld_thm_cfg_parent’, trailingslashit( get_template_directory_uri() ) . ‘style.css’ );
}
endif;
add_action( ‘wp_enqueue_scripts’, ‘chld_thm_cfg_parent_css’ );Forum: Fixing WordPress
In reply to: wordpress security (access to the includes folder)Thank you for the nice response.
I have a few follow-up questions.(1) I might have been slightly unclear. Within the institute, no access is blocked. So, while at work I can access the admin page etc. When you said about the includes folder,
Without them, especially jQuery, pretty much everything will break.
Did you mean the website would not function at all, or did you men that certain aspects (the ones using jQuery) would not function, but that other parts of the site would be ok?
(2) If all of the wordpress folders except the “includes” folder are blocked from outside the institute, will people outside have a normal website experience?
(3) the link you mentioned had this to say about securing the includes folder:
Securing wp-includes
A second layer of protection can be added where scripts are generally not intended to be accessed by any user. One way to do that is to block those scripts using mod_rewrite in the .htaccess file. Note: to ensure the code below is not overwritten by WordPress, place it outside the # BEGIN WordPress and # END WordPress tags in the .htaccess file. WordPress can overwrite anything between these tags.# Block the include-only files. <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^wp-admin/includes/ - [F,L] RewriteRule !^wp-includes/ - [S=3] RewriteRule ^wp-includes/[^/]+\.php$ - [F,L] RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F,L] RewriteRule ^wp-includes/theme-compat/ - [F,L] </IfModule> # BEGIN WordPress
Note that this won’t work well on Multisite, as RewriteRule ^wp-includes/[^/]+\.php$ – [F,L] would prevent the ms-files.php file from generating images. Omitting that line will allow the code to work, but offers less security.
I am not sure what all that means. if I followed this procedure, would that lead to the same situation that I have now (i.e. parts of the site that use jQuery won;t work)?