justyumyum
Forum Replies Created
-
Forum: Plugins
In reply to: [Code Snippets] Last update breaks editor’s quicktags in toolbarMornig Shea,
did you recieve my credentials?
Thanks and Cheers
CarstenForum: Plugins
In reply to: [Code Snippets] Last update breaks editor’s quicktags in toolbarI’ll drop you credentials via email in a a short.
Thanks in advance
Forum: Plugins
In reply to: [Code Snippets] Last update breaks editor’s quicktags in toolbarI remember that I was aked to update my database tables during one of the last updates.
phpmyadmin is in place. What data do you need to check my tables? phpmyadmin user, wp admin access?
Forum: Plugins
In reply to: [Code Snippets] add_action has no effectHi
This seems to be a theme specific hook for themes by GeneratePress (https://generatepress.com/).
As you are using WP2017 theme it can’t work as the theme doesnt have this hook.
Cheers
CarstenForum: Plugins
In reply to: [Code Snippets] Last update breaks editor’s quicktags in toolbarOk, now it’s getting really stange: I can’t change the setting where to run a script.
After setting it to “frontend only” and saving, the setting is on global again.
I’ve been doing it for several scripts now and always the same behaviour.
- This reply was modified 6 years, 10 months ago by justyumyum.
- This reply was modified 6 years, 10 months ago by justyumyum.
- This reply was modified 6 years, 10 months ago by justyumyum.
Forum: Plugins
In reply to: [Code Snippets] Last update breaks editor’s quicktags in toolbarOk, I’ll check if I can drill it down. Another thing i noticed when checking my scripts: all my scripts lost the information about where to run the specific snippet. All snuppets are on “run globally”.
As I run frontend as well as backend scripts this could be the reason yet, couldn’t it?
I’ll correct the settings for each script now and check if I got rid off the problem then.
Forum: Plugins
In reply to: [Code Snippets] Last update breaks editor’s quicktags in toolbarHi Shea
Of course I would send you an export of all my scripts (there are many). Just let me know where to drop the files for you.
Cheers
Carsten- This reply was modified 6 years, 10 months ago by justyumyum.
Forum: Plugins
In reply to: [Code Snippets] Last update breaks editor’s quicktags in toolbarHi Shea
Thanks for taking care so quickly.
1. It also occurs on pages, posts and custom post types. So it’s somehow globally.
2. Updated from 2.9.6 to 2.10
3. Deactivating all snipptets as well as turning on safe mode or deactivating code snippets plugin brings back quicktags.
4. All my sites are single-site installations – using 2 subdomains, one for plugins and one for wp-content.Each point mentioned above is true for all my sites.
Cheers
Carsten- This reply was modified 6 years, 10 months ago by justyumyum.
- This reply was modified 6 years, 10 months ago by justyumyum.
Forum: Plugins
In reply to: [Code Snippets] Last update breaks editor’s quicktags in toolbarP.S.: I’ve been checking some of my other sites (different plugins, different themes) where I’ve been running the latest code sippets update.
An each page same picture.
- This reply was modified 6 years, 10 months ago by justyumyum.
Ok, guys, got it:
The problem was caused by a Javascript called Gamajo Accessible Menu used in Genesis framework.
I decided not having the theme’s primary and secondary navigation active but a custom navigation instead. The not active navigations made the script throwing a JS error which stopped the password strength indicator from working.
With bringing back one of the navigations the error disappeared and the indicator works again.
Forum: Plugins
In reply to: [Simple Link Directory] do_shortcode() doesn’t show columnsHi guys,
the update fixed the issue for me.
THANKS!
Forum: Plugins
In reply to: [Simple Link Directory] do_shortcode() doesn’t show columnsHey guys,
any news on this?
Thanks
Carsten- This reply was modified 7 years, 2 months ago by justyumyum.
Forum: Plugins
In reply to: [Simple Link Directory] do_shortcode() doesn’t show columnsThanks.
Should have mentioned that using the shortcode the classical way within page or post via editor works.
Should I send you my theme files then?
- This reply was modified 7 years, 2 months ago by justyumyum.
Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] Check if user_mail is setOk, got it by myself!
$jyy_checkUserEmail = get_post_meta(get_the_ID(),'user_email', true);
is doing the magic
Forum: Plugins
In reply to: [Cachify] htaccess rules for caching on subdomainsSo, if I got you right, the statements for Cachify in the htaccess should lokk like this?
# BEGINN CACHIFY # ENGINE ON RewriteEngine On # GZIP FILE RewriteCond %{REQUEST_URI} /$ RewriteCond %{REQUEST_URI} !^/wp-admin/.* RewriteCond %{REQUEST_METHOD} !=POST RewriteCond %{QUERY_STRING} ="" RewriteCond %{HTTP_COOKIE} !(wp-postpass|wordpress_logged_in|comment_author)_ RewriteCond %{HTTP:Accept-Encoding} gzip RewriteCond home/www/static1.mydomain.de/wp-content/cache/cachify/%{HTTP_HOST}%{REQUEST_URI}index.html.gz -f RewriteRule ^(.*) /cache/cachify/%{HTTP_HOST}%{REQUEST_URI}index.html.gz [L] AddType text/html .gz AddEncoding gzip .gz # HTML FILE RewriteCond %{REQUEST_URI} /$ RewriteCond %{REQUEST_URI} !^/wp-admin/.* RewriteCond %{REQUEST_METHOD} !=POST RewriteCond %{QUERY_STRING} ="" RewriteCond %{HTTP_COOKIE} !(wp-postpass|wordpress_logged_in|comment_author)_ RewriteCond home/www/static1.mydomain.de/cache/cachify/%{HTTP_HOST}%{REQUEST_URI}index.html -f RewriteRule ^(.*) /cache/cachify/%{HTTP_HOST}%{REQUEST_URI}index.html [L] # END CACHIFY