InnoGears
Forum Replies Created
-
Forum: Plugins
In reply to: [IG Mega Menu] IG MenuThank you guys for the conflict report!
We will investigate it and try to implement the fix for this in next version, stay tuned please ??
Forum: Plugins
In reply to: [IG Mega Menu] IG MenuHello,
First of all, sorry for the problem you got, but we tried in some other ways to install IG MegaMenu, and it still work normally, there should be a menu item named IG MegaMenu on the left menu, where you can add Mega Menu profiles.So this could be a conflict with other plugins, can you please list the plugins that you’re using (and activated, of course) on your website, to help us investigating the problem?
Forum: Plugins
In reply to: [IG PageBuilder] Custom addon for child elements is not displaying correctlyHi guys,
There is a sample addon package here:
https://www.innogears.com/docs/ig-pagebuilder/file/ig-helloworld.zip
and the document for developers:
https://www.innogears.com/docs/ig-pagebuilder/#!/dev
so davidj0n can refer to it to build your custom addon. If you are building an element that has sub-elements inside, you can refer to the element “Helloworld2” in that package.
Have a good development!
Forum: Reviews
In reply to: [IG PageBuilder] Best in class !Please check again the latest version. The performance have been improved significantly.
Forum: Reviews
In reply to: [IG PageBuilder] Best in class !Thank you for such detailed review. Yes, we are aware of performance issues and working hard to improve it from version to version. Won’t let you down guys, just keep update the product when new version is released.
Forum: Plugins
In reply to: [IG PageBuilder] Insane Load TimesThanks androidanit,
We appreciate your contributions a lot, we also reply your thread here:
https://www.innogears.com/forum/product-support/464-so-slow-help.html#1050
Keep on going, our nice customers ??
Forum: Plugins
In reply to: [IG PageBuilder] Issues with Templates & Tabs Formatting (getting lost)Hi pinkstudios, about the tab’s style, I made a quick investigation and realized that, the tab’s style was altered by a rule in your wp-content/themes/parallelus-moxie/style.css, line 249:
li { margin: 0 0 0 36px; }
… so the margin for each tab is too high, you can fix this by under tricks:
1. Adding following CSS code into the end of your theme’s CSS file (wp-content/themes/parallelus-moxie/style.css) :
.jsn-bootstrap3 .nav-tabs li { margin-left: 0 !important; }
2. Or you can use “Custom CSS” feature of IG PageBuilder:
– Edit you post
– Switch to Page Builder tab if it’s not
– Click on “Custom CSS” button
– Add following code to “CSS Code” text box:.jsn-bootstrap3 .nav-tabs li { margin-left: 0 !important; }
– Save it then reload your frontend page
Forum: Reviews
In reply to: [IG PageBuilder] Best page builder that I have tested (besides Divi's)Thanks Nick for your review.
There is always a price for having cool features and in this case it’s performance. But we will open new wave of performance optimization for the next version.
I’m just curious about the version you tested. Is it the latest one? Because the latest contains several performance improvements.
Forum: Plugins
In reply to: [IG PageBuilder] default media upload box in 2.2Dear Nomi,
A new version with the fix has been released, please update and check if your problem still exists or not (clear all caches please)
Forum: Plugins
In reply to: [IG PageBuilder] Installed Yoast SEO broke pageHi,
I quite don’t understand your mind clearly, can you explain more detail about “each refresh shows different version”?
For your information, IG PageBuilder does not cache the page content, it only caches its own css and js files on frontend.
Forum: Plugins
In reply to: [IG PageBuilder] How to check if builder is used in a page?Hi Onurozt!
There is a way to check if PageBuilder is used in a post/page, by using under function:
get_post_meta( $post->ID, '_ig_page_builder_content', false );
if it returns true, it means that post which has ID is “$post->ID” used PageBuilder
Hope this helps,
Forum: Plugins
In reply to: [IG PageBuilder] image not showHi,
It is weird, you have that issue which only the Image element? that image was from you internal website, or from another website? (I mean its URL).
To get more helps, can you please post a question in our official support forum? our staffs will be able to get closer to you.
Forum: Plugins
In reply to: [IG PageBuilder] Unable to activate pluginHi there, that was uncompatible problem in PHP version. This PHP function only exists on version from 5.3, please upgrade your PHP version to us the plugin.
Forum: Plugins
In reply to: [IG PageBuilder] Invalid argument & Warning: is_file() [function.is-file]:Hello,
Sorry, the pasted code was replaced by WordPress forum.
Please replace the whole content of this file: var/www/tjekit.com/public_html/wp-content/plugins/ig-pagebuilder/core/helper/shortcode.php
by the content which got from here:
https://plugins.svn.www.ads-software.com/ig-pagebuilder/trunk/core/helper/shortcode.php
Forum: Plugins
In reply to: [IG PageBuilder] Text attributes missingHello,
Currently, the Text element does not have font-face parameter, it will be implemented in next verison.
But if you are familiar in CSS, you now can temporarily use it to make the font-face for element, each element in latest version already have a parameter named “Class Suffix”, you can use it for styling.
Thank you!