yosh
Forum Replies Created
-
I too am having this problem. So annoying!
Forum: Plugins
In reply to: W3 Total Cache: Slider doesn't work anymoreI’ve noticed that the minify engine in W3TC doesn’t play nice with the javascript in some sliders. You can manually manage your minify settings in W3TC, and add all the other javascript on your pages except the slider. Leave those as-is. This has solved this problem for me in the past while still getting most of the benefits of the plugin.
Forum: Plugins
In reply to: [Gravity PDF] Recent plugin updatesJust what I needed!
Forum: Plugins
In reply to: [Menu Item Visibility Control] How do you show menu item to specific user?@iwrate Even better! I didn’t realize that the plugin would accept a statement like that.
Forum: Plugins
In reply to: [Menu Item Visibility Control] How do you show menu item to specific user?I don’t think that this can be done with the Menu Item Visibility Control plugin because there isn’t a Conditional Tag based on the user.
However, I just whipped together a code snippet that can handle this. Add it to your functions.php file.
Change the number to the User ID that you want to target and change the theme location to the menu that you are targeting.
Let me know if you have any questions.
add_filter( 'wp_nav_menu_items', 'add_custom_link', 10, 2 ); function add_custom_link( $items, $args ) { $user_ID = get_current_user_id(); if ($user_ID == "1" && $args->theme_location == 'primary') { $items .= '<li><a href="https://yourlink.com">Link Text</a></li>'; } return $items; }
Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] Forced SSL Logins Broken.I can confirm the same error. Without SSL, there is text in the red box in the widget when someone does something like enter a bad password. With SSL, no text.
I’m having this problem.
I can check the box, but the column is not hidden.
Forum: Plugins
In reply to: [JETPACK] the app yould not connect to wordpress.comI just rolled back from php 5.3 to 5.2 and the error disappeared.
Forum: Plugins
In reply to: [JETPACK] the app yould not connect to wordpress.comSame problem.
Also Dreamhost VPS etc.
Has anyone resolved this and/or talked to Dreamhost about it?
Forum: Themes and Templates
In reply to: Page lists in headerHow do I get the page names with multiple words to display on one line?
Thanks!