EMar
Forum Replies Created
-
Thank email sent
Hi,
No prob, I haven’t tried yet but maybe it’s conflict with another plugin.
Hi,
Resize my full size images is enabled and set to 2048 x 2048
Media Settings Large Size is set to 1024 x 1024Classic Block 😉
Totally 🙂
Cool look forward to using it
No sorry, I think the issues was classic block and ultimate addons for gutenberg.
I continued the thread here
Hey Ramiz,
Are we referring tot he same plugin here?
I was referring to Advanced Columns.Answered my question, would be nice to have tabs and accordions for content.
Forum: Plugins
In reply to: [WP Custom Admin Interface] Admin Toolbar doesn’t loadOk no prob thanks
Forum: Plugins
In reply to: [WP Custom Admin Interface] Admin Toolbar doesn’t loadIt’s 3 plugins, when I enable them the Admin Toolbar doesn’t load.
Forum: Plugins
In reply to: [WP Custom Admin Interface] Admin Toolbar doesn’t loadHi,
Yes just discovered conflict was one or two plugins.
Ok thanks!
Thanks,
I just used inspect element and added the changes to my theme custom css.
Forum: Requests and Feedback
In reply to: open in new tab when click on visit siteIt’s more convenient to have the Visit Site link open in a separate window.
I used a plugin to do it until today, “Visit Site In New Tab”
Did a google for a better way to do it without a plugin.
—
Just found this code,
Put it in your functions.php, if you have a child theme even better.
Put your functions.php in the child theme.Add this code to the bottom of your functions.php
add_action( 'admin_bar_menu', 'shatel_view', 999 ); function shatel_view( $wp_admin_bar ) { $all_toolbar_nodes = $wp_admin_bar->get_nodes(); foreach ( $all_toolbar_nodes as $node ) { if($node->id == 'site-name' || $node->id == 'view-site') { $args = $node; $args->meta = array('target' => '_blank'); $wp_admin_bar->add_node( $args ); } } }And finally delete plugin 🙂
- This reply was modified 6 years, 10 months ago by EMar.