Gecka
Forum Replies Created
-
Hello,
The only thing that can cause that problem is an other plugin incompatibility.
Please try deactivating plugins one by one to find out witch one is causing that issue.
Regards
Forum: Plugins
In reply to: [Gecka Submenu] [Plugin: Gecka Submenu] change order of menu?Please download the developpement version from github: https://github.com/GeckaApps/Wordpress_Gecka_Submenu
Click Downloads (upper left) then choose an archive format (zip, tar.gz)
It should solve your problem.
Forum: Plugins
In reply to: [Gecka Submenu] [Plugin: Gecka Submenu] won't update menuHello,
So it seems that you use the wordpress option to automatically add first level pages?
In this case WordPress creates a new menu item in the database for each first level page you add. Gecka submenu works on the fly: when wordpress generate a menu to display in the frontend, Gecka Submenu fills it using your settings.
It should be possible to write some code so that the menu item of a first level page that is “moved” get deleted.
We can do that for you, please contact us from our website: https://gecka-apps.com
Hello,
The pro version can autopopulate menu with any taxonomy’s terms and any custom post type.
Regards
It seems like you do not call the add_streched_background function in your theme’s functions.php file.
Please make sure you do. If so, send us you functions.php file using our support form: https://gecka-apps.com/support
Hi ale_ba,
What do you mean by “the image not appear streeced” ?
Regards.
Hi ale_ba
In header.php add
<div id="wrapper">
after the<body>
tagIn footer.php add
</div>
before the</body>
tagI have tested it and it work.
When you set bellow IE8 it adds a conditional comment: if lte IE 7 which means “lower or equal”.
Weren’t you in IE7 mode when testing it?
I have the problem for users login to comment
I can do it
I use your plugin on a french install of WP. The problem comes from the french translation file:
#: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:154
msgid “Blog”
msgstr “Accueil”So whenever I have a blog static page called Blog it get translated to Accueil (which means Home)
It is not the correct translation, see: https://translate.google.com/#en|fr|blog
Forum: Plugins
In reply to: [Gecka Submenu] [Plugin: Gecka Submenu] Shortcodes wont workDid that work for you?
—
Gecka
We helped you? Say thanksForum: Plugins
In reply to: [Gecka Submenu] [Plugin: Gecka Submenu] Module issue with Category menu itemsHello,
Sorry for the late reply but we have been very busy with our customers.
May you please try the SVN version and tell us if it does what you want?
It should.
Best regards.
—
Gecka
We helped you? Say thanksForum: Plugins
In reply to: [Gecka Submenu] [Plugin: Gecka Submenu] Shortcodes wont workYou should first understand that gecka submenu, can render a list of child items of menu items defined in a custom menu (under appearance > menu)
If you want to render the child pages of current page just use the wp_list_pages function.
Something like this could do the trick:
function gecka_subpages( $atts ) { $defaults = array('title_li'=> '', 'child_of' => $GLOBALS['post']->ID); $atts = shortcode_atts( $defaults, $atts ); $atts['echo'] = 0; return wp_list_pages($atts); } add_shortcode( 'subpages', 'gecka_subpages' );
Then use the
subpages
shortcode using any argument from wp_list_pages documentation page—
Gecka
We helped you? Say thanksForum: Plugins
In reply to: [Gecka Submenu] [Plugin: Gecka Submenu] Shortcodes wont workCan you explain your setup a bit more?
Do have defined a custom menu ? What shortcode do you use with witch parmeters?