chows305
Forum Replies Created
-
Forum: Plugins
In reply to: [Widgetize Navigation Menu] featured image in nav-bar in wrong sizeHello,
I would love to help, but I will need to look at your website to further assist you. I am predicting that your theme’s styling is setting all the images to a certain height. You can leave the “display featured images” checked off for now, just please send me a link.Cheers,
StephnaieForum: Plugins
In reply to: [Widgetize Navigation Menu] Problem with MH Magazine Lite ThemeThanks,
Been thinking about that. I can add an image field to categories so you can display featured images just like you would do with page or post.
In the middle of working on a new plugin, but perhaps once I am done with that, I can add that option in.
Cheers,
StephanieForum: Plugins
In reply to: [Widgetize Navigation Menu] Problem with MH Magazine Lite ThemeHi,
Please paste this into your custom css:
#adv-recent-posts li.advwidget-item.col-xs-6, #adv-recent-cats li.advwidget-item.col-xs-6, #adv-recent-pages li.advwidget-item.col-xs-6{
padding:0!important;
}Sorry about the inconvenience. I will look into possibly solving this issue in the next update. For now, adding the above styling should work.
Cheers,
StephanieForum: Plugins
In reply to: [Widgetize Navigation Menu] Theme issues after updateHi again,
I should have put this in the notes, but if you have already replaced your navigation code with the function listed in the manual instructions, you do not need to check “enable menu”. If you have enable menu checked and the code replaced at the same time, it will just call the function twice, hence why you are seeing the menu show up twice.If you prefer to have enable menu checked, you will need to sort of undo what you did with the code, and replace it with your original navigation function. Otherwise you can just leave enable menu unchecked.
Cheers,
StephanieForum: Plugins
In reply to: [Widgetize Navigation Menu] Bug after saving widgetized menusTo follow up with this issue, I came out with an update in version 1.02 that allows special characters to be used to register new sidebars. Issue should be resolved.
Forum: Plugins
In reply to: [Widgetize Navigation Menu] Widgets doesn't appear in wigetized menuAlrighty there is a new version of the plugin (1.03) that should fix the issue for you.
There was a style in your theme that was adding a margin-left to all the widget columns so I simply added a style to remove that margin.
This is the css I added:
nav.widgetized-nav .sub-menu.widgetized-menu li.menu-widget-column{margin:0!important;}I appreciate you showing me a live demo of the issue so I could easily figure it out.
Cheers,
StephanieForum: Plugins
In reply to: [Widgetize Navigation Menu] Widgets doesn't appear in wigetized menuOh the other thing I thought of, make sure you actually check of categries/pages in the widgets that come with the plugin. The links will not show up unless you check off what you want to show.
CheersForum: Plugins
In reply to: [Widgetize Navigation Menu] Bug after saving widgetized menusAh okay, any chance your menus have the same names? Would you be willing to set me up with a temporary admin login to your site so I can further look into what’s going on?
You can send me a private message at [email protected]
Cheers,
StephanieForum: Plugins
In reply to: [Widgetize Navigation Menu] Widgets doesn't appear in wigetized menuHello,
First off, I am so sorry it is not working properly for you but hopefully we can figure this out.
Unfortunately I cannot test out the plugin with the theme myself as the theme is not free:( I looked at the theme’s demo but can not see any obvious reasons why it would be doing this.
Is your site public? Is is possible for you to send me a link to look at the issue?
And curious, do any widgets that did not come with my plugin show up properly in the submenu?
You may email me privately if needed – [email protected]
Cheers,
StephanieForum: Plugins
In reply to: [Widgetize Navigation Menu] Bug after saving widgetized menusNot sure I understand. Perhaps a screenshot? When you click to widgetize a menu item, are you choosing 1 column under the that item?
For each column per menu item, a new sidebar will be created. So if you choose to widgetize 3 different menu items, and choose 1 column for each, you will have 3 sidebars created. The dash # after the name of each sidebar corresponds to the the column number under that menu item.
Cheers,
StephanieForum: Plugins
In reply to: [Widgetize Navigation Menu] Unable to add plugin to themeHello,
Basically you will want to replace that function with your the theme_location name.So you can remove all of that code or comment it out (by wrapping /*…*/)
and replace with:if (function_exists(‘widgetize_my_dropdown_menus’)) { widgetize_my_dropdown_menus(‘mx_menu’); }
The list of your theme locations corresponding to your menus can be viewed by going to your admin’s sidebar, Appearance–> “Dropdown menus”.
You will see listed in the dropdown next to “Choose Menu to add widgetize dropdowns to:”, your list of your menus and MENU NAME (which are your theme locations)
Once you have replaced the code, and then chosen the menu you are widgetizing in the Dropdown Menus section, you will be able to widgetize your menu items there. The number of dropdowns depend on number of menu items in that menu. You can add one dropdown per menu item, each widgetized menu item can have up to 4 columns
Hope that clears it up for you.
Cheers,
StephanieForum: Plugins
In reply to: [Petfinder: Search & Rescue] Request: "Hide" top options by defaultAlrighty there is a new version of the plugin (1.02) that lets you choose to hide the options by default, or completely remove them from the page.
Cheers,
StephanieForum: Plugins
In reply to: [Petfinder: Search & Rescue] Messing hard with my site's basic formattingAlrighty, there is a new update for the plugin – version 1.02 that should resolve your issues.
As for the sidebar, ensure that you have used a page template with a sidebar.
The petfinder plugin does look like it sits to the left of the sidebar when I copied over the sidebar’s code and it seems to work.
See image:
http://www.lendingapaw.org/wp-content/examples/petfinderwithsidebarexample.jpgLet me know how it works out.
Cheers,
StephanieForum: Plugins
In reply to: [Widgetize Navigation Menu] Responsiveness and CSSSimply adding this to your css will fix it:
.container{position:static!important;}The container is actually in your main css. It currently has a “position:relative” that is causing the menu to be constrained to its dimensions.
For now, that should work, but I may try to look at the code to see if there is a away to avoid this type of issue in the future.
Cheers,
StephanieForum: Plugins
In reply to: [Widgetize Navigation Menu] Unable to add plugin to themeHello,
You may be able to fix this by:
REPLACE:
$primaryNav = wp_nav_menu( array( ‘theme_location’ => ‘primary-menu’, ‘container’ => ”, ‘fallback_cb’ => ”, ‘menu_class’ => $menuClass, ‘menu_id’ => ‘top-menu’, ‘echo’ => false ) );
WITH:
$primaryNav = widgetize_my_dropdown_menus(‘primary-menu’);If this does not work, I would need to see the rest of the functionality in the file to figure out exactly how this is set up.
It looks like the function to call your menu is first being set to a variable before being called. Unusual but I am certain I can help you get the plugin to work right.
If you can, send me the link to that particular file. You may email me at [email protected]
Cheers,
Stephanie