shramee
Forum Replies Created
-
Forum: Plugins
In reply to: [Caxton - Create Pro page layouts in Gutenberg] No need of FontawesomeAs of the latest version all our code now doesn’t have any 3rd party dependencies, (Vanilla JS and CSS) and is like 14k in all. We rewrote our code to have no jQuery dependency.
Code for other blocks is loaded on demand when those blocks are used on the page.
Hope that answers your concerns. To keep number of requests in check and avoid FOUCs, we add minimal base script/style file and add-on scripts/styles (sliders/carousels) queued when needed.
Forum: Plugins
In reply to: [Caxton - Create Pro page layouts in Gutenberg] No need of FontawesomeHi @webagenturerding @brigdonnwr,
Now our icon picker uses SVG instead of font awesome elements with fa classes. ??
And we only load font awesome if we find font awesome classes used on the page for backwards compatibility.
Hi @piefolle,
We support Edge, IE 11 doesn’t support flex box as specified by w3c specs. So to avoid having to maintain legacy code which is useless for like 97% of our users. We decided to drop support for IE11.
We intend to release several more lovely layouts which need grid span… and to us it seems a bit unreasonable to have 97% of our users stick to plain old column based layouts and/or bloated code for 3% of users who want to use legacy software…
Sorry about in-line CSS but again we want to be able to roll out new lovely layouts regularly. And it’s a lot easier and maintainable in long run to add an inline rule so everything is at one place.
We recognize the need to use different layouts on mobile… and we are working on a solution to choose different mobile layouts… So please keep your eyes peeled for the new update ??
Hope you can understand our concerns and pardon us for not being able to support Internet Explorer. Our apologies for inconvenience caused but it’s really important for us to use minimal code and have it maintainable so it’s fast and good looking for our users and have content accessible for legacy browsers (~3%).
Hi Bob ??
We will try to add that as a setting in next version ??
Till then, this CSS should do it for you…
.caxton-grid .grid-image h3.grid-title { color: black; text-shadow: 1px 1px 1px rgba(255,255,255,0.5); } .caxton-grid .grid-image:hover h3.grid-title { color: white; text-shadow: none; }
Hope that helps ??
- This reply was modified 6 years, 5 months ago by shramee.
Forum: Plugins
In reply to: [Pootle Pagebuilder - WordPress Page builder] Input IdeaHi @madejackson,
Thanks for getting in touch. Good news is that caching page builder html in high on our radar, And it will be ready within next few releases ??
This will reduce time taken to render PPB pages coz it will just return pre-rendered HTML from database directly ??However, live editor will still take some more time coz live editor needs cache disabled.
Hope that helps. Lemme know if I left something out ??
Cheers
Same thing seems to happen for
wp_posts
table…Hi guys…
I got the same error…
Taking a closer look I found this SQL generated by Duplicator to be responsible for creating the users table…CREATE TABLE
wp_users
(ID
bigint(20) unsigned NOT NULL AUTO_INCREMENT,user_login
varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',user_pass
varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',user_nicename
varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',user_email
varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',user_url
varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',user_registered
datetime NOT NULL DEFAULT '0000-00-00 00:00:00',user_activation_key
varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',user_status
int(11) NOT NULL DEFAULT '0',display_name
varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (ID
), KEYuser_login_key
(user_login
), KEYuser_nicename
(user_nicename
), KEYuser_email
(user_email
) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;However trying to run it in
phpmyadmin
gave this error…
#1067 - Invalid default value for 'user_registered'
This seems to be the reason why table
wp_users
is not created…Forum: Plugins
In reply to: [Pootle Pagebuilder - WordPress Page builder] Pootle Button – set fixed widthHi again @pagallery,
Use this css…
a.pbtn { width: 250px; }
Change
250px
with size you want…Again… You can put this in
Row Styling Panel
>Advanced
tab >CSS for Row Elements
??
Lemme know how it went…Hi @pagallery,
You’ll need to use this css…
a.pbtn:hover {
color: #0af;
}
Change
#0cf
with color of your choice ??You can put this in
Row Styling Panel
>Advanced
tab >CSS for Row Elements
.
Hope that helps ??Hi @magiclouiepress,
Looks like you are using an old Yoast SEO Plugin…
Try updating to the latest version of Yoast SEO…Also if this is your production site, Keep
WP_DEBUG
false to avoid revealing paths, It won’t show any errors.Let us know how it goes.
Forum: Reviews
In reply to: [Pootle Pagebuilder - WordPress Page builder] Great builder only one problemThanks ??
Kindly update the rating if you are happy with it ??Forum: Plugins
In reply to: [Pootle Pagebuilder - WordPress Page builder] Live Edit strange behaviourHi Argentum,
Kindly try saving once from admin end on page(s) you are facing the issue…
As it sounds like a saving issue…
Let us know how it goes…Thanks ??
Forum: Reviews
In reply to: [Pootle Pagebuilder - WordPress Page builder] Great builder only one problemHey Moshje,
We have fixed this in v2.0. ??Forum: Plugins
In reply to: apply_filters to $GLOBALS help neededHi Martijn,
We take care of this in version 0.3.0
You can put
add_filter( 'pootlepb_content_block', 'do_shortcode' );
Before accessing the pages to make the short codes work for ya, before 0.3.0 is released ??
Hi martijnvhummel,
Sorry for the delay…
Can you share a link where this is happening?