DarkSnowy
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Responsive Tabs] All dropdown buttons appear as active colorI changed ‘easy_res_tab.php’ at line 130 to:
“if($seltabcolor!=”){
$seltabcolor=’#oscitas-restabs-‘ . $id .’ li.active > a { background-color:’.$seltabcolor.’;}’;
$seltabcolor.= ‘#oscitas-restabs-‘ . $id .’ li.active > a:hover { background-color:none;}’;
$seltabcolor.= ‘#oscitas-restabs-‘ . $id .’ li.active > a:active { background-color:none;}’;
}”At line 175 I changed to:
“$_SESSION[‘ert_css’].=$tabcolor.$tabheadcolor.$seltabheadcolor.$tabhovercolor.$seltabcolor.$contentcolor;”This has fixed the problem for me and works. Would you be able to have the fix by next update? Because my changes will be lost when I update.
Forum: Plugins
In reply to: [Easy Responsive Tabs] ProblemLooks like Google bots doing what they shouldn’t be doing. I doubt this can be solved without more information.
Perhaps ask Google what they are doing to generate this error?P.S. I’m not affiliated with this plugin or its development.
I found what was conflicting!
For those not able or willing to alter WordPress, removing the plugin ‘Nmedia File Uploader Plugin’ fixed all problems.The error seems to be stemming from the pages not being in the WordPress menu.
I have edited the WordPress code to allow access to the pages so it works currently, so long as I don’t update WordPress without making the changes again.
Is it possible for you to have all your pages in the WordPress menu some time in the future? Perhaps you could use Tabs on your pages like some plugins are doing?I deleted the whole extensions folder now, so I’m sure.
nmedia-file-upload_page_newsletter_emails_theme is simply the hookname given to the page ../wp-admin/admin.php?page=newsletter_emails_themeWhen you try to access a page on the WordPress menu or submenu it tests to make sure the page is in $_registered_pages.
From what I can see this page isn’t even on the WordPress menu so I’m not clear on why it is being tested at all.
I have this same version of Newsletters installed onto a second WordPress site with the same version of WordPress and I am not having this problem on the second site. So this is very strange to me and I need help.I can see how I wasn’t completely clear in my original post.
However I had seen the last time you dealt with this issue on other form and already tried deleting the extensions folder and reinstalling the plugin.
I don’t know why there was a newsletter folder in extensions to begin with however I had auto-installed the plugin the first time.The ‘get_plugin_page_hookname()’ function returns ‘nmedia-file-upload_page_newsletter_emails_theme’
So WordPress is complaining that this is not set in $_registered_pages[]Forum: Plugins
In reply to: [Easy Responsive Tabs] More ButtonWhile you wait for their update just place this line into your CSS:
.hide { visibility: hidden; }
Placing it into ‘Theme Options’ > ‘CSS Styles’ will do.
Their script adds the class ‘hide’ when it is not wanted which I believe works by setting ‘display: none’. Something else is setting the display to ‘block’, forcing it to reappear.
I assumed it was a naming overlap from another plugin using the class ‘.nav > li > a’ however if you have the same problem then maybe it is not?