wordpressme2
Forum Replies Created
-
Forum: Plugins
In reply to: [Analyticator] Plugin breaks chart and admin after updateIt is not working on my site either. Even with resetting, still nothing loads on dashboard.
Not sure how long this has been going on, but it seems not fixed yet as far as my experience.
Has anybody had this issue that is fixed?
Forum: Reviews
In reply to: [Photo Video Gallery Master] Has potential but lite version is very limited!I figure out why column is not working. Each thumbnail is set as 50% and with padding is bigger than fitting on the full width. It has to be declared something less like 48%. So you can get two thumbnails beside each other! ??
- This reply was modified 8 years, 1 month ago by wordpressme2.
Forum: Plugins
In reply to: one monther calendarI figured it out with Google documents. I created a table manually like a calendar and now I can edit each date on it.
Forum: Themes and Templates
In reply to: Responsive Child theme header.php causes problemThanks ??
Forum: Themes and Templates
In reply to: Responsive Child theme header.php causes problemOn another attempt, I removed the child header.php and instead modified the parent file. Then I lost the responsivenss of the menu. Went back and undid what I did on the file and uploaded it as it was in the first place, then I lost the responsive menu all together on mobiles.
This is acting so weird!!!
Thank you very much for this!
So just to make sure, I create my own simple plugin and add the function in it and that’s it, right?
Forum: Reviews
In reply to: [Zedna eBook download] smooth and simpleHow does your plugin work? Are you sure it actually works?
I have installed it and put it in the widget. There are two fields with no label to say what should do with them and there is a button also with no label!
Thanks for the response!
Yes, the advanced setting must have been in the older versions than mine, that’s why I don’t see them now!
However, I can’t figure out why none of lightbox effects work on my site.
I just found out Nextgen on my other site is not working either. The lightbox is gone! These two sites are on different servers. One is on dreamhost and one on Godaddy. So the server shouldn’t be an issue either.
So I had to replace Nextgen with Foogallery on both sites. One site still needed an additional jquary lighbox plugin to make Foogallery work. (Nextgen didn’t even work with the help of jquary lightbox plugin).
So my mystery still continues. If you would like to look at the problem for the sake of your plugin improvement I can give you the access to the site. Let me know.
Thank you!Forum: Fixing WordPress
In reply to: how to call a custom menu inside a pageOh nice, got it, thanks ??
Forum: Fixing WordPress
In reply to: how to call a custom menu inside a pageYes, that is right, I used the firebug and it tells me it is using a class called menu added to the ul.
<div class=”menu-counselor-menu-container”>
<ul id=”menu-counselor-menu-1″ class=”menu”>In fact the same class as my main navigation. So the question: how can I add or change the class.
Thank you for following up with me and your help. I really appreciate it ??
Forum: Fixing WordPress
In reply to: how to call a custom menu inside a pageI was thinking it should come plain like listed li in a column. But I think it is all up to styling. I should be able to figure that out.
I am just curious why it catches the main menu styling? Is there something in the code that defines that? And why the custom menus in the widgets in a simple plain theme, usually show up as a stack of li items?
Forum: Fixing WordPress
In reply to: how to call a custom menu inside a pagePerfect, thank you, this is what I did as a complete coding for reference in here.
In function.php I added:
function register_new_menu() {
register_nav_menu(‘hero’,__( ‘Hero Menu’ ));
}
add_action( ‘init’, ‘register_new_menu’ );then in the home-page.php, I added:
<?php wp_nav_menu( array( ‘theme_location’ => ‘hero’ ) ); ?>When I go to appearance-> menus, I can see the Hero Menu added as location. I create my custom menu and add it to this location. And the menu shows on the right spot ??
One question though which relates to the second part of my question:
This menu has the look of my main menu navigation and not like the custom menus when we add to the widgets. So does it have to be in the widgets to look like that, otherwise it has the styling of the main navigation?