briansaycocie
Forum Replies Created
-
Awesome thanks Gioni!
It was indeed the migrate script I was missing. Thanks Ross!
Forum: Plugins
In reply to: [CW Image Optimizer] Install For DummiesUnfortunately, it won’t work in your situation. For shared hosting, you only have full access to your home folder, and not the entire server. This will work for those that are hosted on a VPS or dedicated server.
Try contacting your host’s support and check if they can install littleutils for you.
Forum: Plugins
In reply to: [Social Media Feather] How to hide dashboard widget?Nevermind! Figured it out. According to the Dashboard Widgets API, you’ll need to create a function to remove the meta box:
// Create the function to use in the action hook function example_remove_dashboard_widget() { remove_meta_box( 'synved_connect_dashboard_widget', 'dashboard', 'normal' ); } // Hook into the 'wp_dashboard_setup' action to register our function add_action('wp_dashboard_setup', 'example_remove_dashboard_widget' );Forum: Fixing WordPress
In reply to: Upgraded to 3.8: Visual editor buttons not showingI tried replacing just the wp-includes folder with a new copy and that worked!
Thank you @wpyogi!!
Forum: Fixing WordPress
In reply to: Upgraded to 3.8: Visual editor buttons not showingAlso, switched my theme to twentytwelve, still not showing.
Forum: Fixing WordPress
In reply to: Upgraded to 3.8: Visual editor buttons not showingDisabled my plugins, issue is still there. Its missing the mceEditor element.
Forum: Fixing WordPress
In reply to: Upgraded to 3.8: Visual editor buttons not showingSorry for going back and forth…
Anyways, here is the issue:
After inspecting the markup, I’m missing the <span class=”mceEditor”> element. And just realized my content isn’t showing in the editor as well.
I’ll try disabling my plugins.
Forum: Fixing WordPress
In reply to: Upgraded to 3.8: Visual editor buttons not showingActually nevermind… its displaying the text editor buttons only.
Forum: Fixing WordPress
In reply to: Upgraded to 3.8: Visual editor buttons not showingOh I think I found the issue.
From this editor.min.css:
.tmce-active .quicktags-toolbar { display: none; }I changed it to display block on my Chrome dev tools and now it shows.
Forum: Fixing WordPress
In reply to: Upgraded to 3.8: Visual editor buttons not showingAlso, its my client noticing it as well.
Forum: Fixing WordPress
In reply to: Upgraded to 3.8: Visual editor buttons not showingMy fault… its not working in Firefox, I was looking at my local environment.
Tested it in Safari and its not showing up there either.
Forum: Fixing WordPress
In reply to: Upgraded to 3.8: Visual editor buttons not showing@serpentskiss – I looked at it incognito, didn’t work…
@WPygoi – Weird… looks like its working in Firefox, but not in Chrome. But my local environment works in Chome.
Forum: Fixing WordPress
In reply to: Upgraded to 3.8: Visual editor buttons not showingThe buttons in the visual editor.
Forum: Fixing WordPress
In reply to: Something wrong with WYSIWYG editor visual 3.8I’m having the same issue. On my local environment, I can see the Visual Editor buttons but I don’t see them on my remote server.
I tried importing my local database into the remote database, and its still not showing.
Any ideas?