rfouquet
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Date not showing up since last updateI fixed my issue by changing the font of the date, and using this custom CSS. But it’s a shame that this update breaks everything …
.ect-list-wrapper .style-1 .ect-list-post-right .ect-list-venue {
background-color: #357ab7!important;
}ect-events-list-content .ect-list-venue .ect-icon, #ect-events-list-content .ect-list-venue .ect-venue-details, #ect-events-list-content .ect-list-venue .ect-venue-details a, #ect-events-list-content .ect-list-venue .ect-venue-details span {
text-align: center!important;
}I fixed my issue like this in custom CSS of my theme :
.plyr__video-wrapper–fixed-ratio {
aspect-ratio: 4 / 3 !important;
}Forum: Plugins
In reply to: [HTML5 Video Player - mp4 Video Player Plugin and Block] Video aspect ratiowell it has been fixed by support in last version, thank you !
Forum: Plugins
In reply to: [The Events Calendar] Migration errors for Event Calendar 6.0.0.1Hello,
Since I updated to 6.0.0.1, I don’t have these kind of error message, but I can’t open events anymore on front side. I get a blank page instead.On wp-admin panel all seems to works fine. I downgrade version and it’s working again but with a red compatibility alert on WP 6.0 in Extensions list.
Any idea how I can fix it and get 6.0.0.1 version working fine ?
Thank you
Regards- This reply was modified 2 years, 2 months ago by rfouquet.
Hi Leon,
Thanks for your quick reply, I experience same issue as yours before, but after deleting cookies in browser it works fine now, my cookie consent is still working after reload.
We are not using cache plugin. Here is the plugin active I have if it can helps :
Akismet Anti-Spam
Better Font Awesome
Breadcrumb NavXT
Broken Link Checker
Caldera Forms
Complianz?|?GDPR/CCPA Cookie Consent
Contact Form 7
Duplicator Pro
Easy FancyBox
Easy WP SMTP
Email Address Encoder
Enable Media Replace
Events Shortcodes and Templates Addon
Featured Images in RSS for Mailchimp & More
FV Player
GA Google Analytics
Hide Featured Image
Imsanity
Limit Attempts by BestWebSoft
Max Mega Menu
Meta Box
POEditor
RiverTheme Core
Safe Report Comments
Scheduled Contents Shortcode
Simple Custom Post Order
Simple Lightbox Gallery – Responsive Lightbox Gallery
Slider Revolution
The Events Calendar
VFB Pro
VFB Pro – afficher les entrées.
VFB Pro – concepteur de formulaire
VFB Pro – notes
Widget for Social Page Feeds
Widget Importer & Exporter
WordPress Importer
WP Maintenance Mode
WP Team Showcase and Slider
WP User Avatar
WP-ShowHide
Yoast Duplicate Post
Yoast SEO
WP Bakery Page builderForum: Plugins
In reply to: [Team Slider and Team Grid Showcase plus Team Carousel] Ordering the teamHello,
Same issue for me, I can’t find a way to order members.
Is it the only way “order by ID” ? So I have to change in database PostID of members ?
Can we use a custom field instead maybe ?
Thank you
RegardsHa yes Ok ! Thank you.
RegardsForum: Plugins
In reply to: [Events Shortcodes For The Events Calendar] Change the size of Date by CSSHo no sorry, it was an issue with Chrome cache.
It’s working fine now.Thanks !
Forum: Plugins
In reply to: [Events Shortcodes For The Events Calendar] Change the size of Date by CSSHello,
I got the same issue, and test your CSS trick.
It works fine to reduce size of day and year, but not the month.Even if I change font-size: 100%!important; to 50% it’s still stay very big, and changing text size in template settings / style settings has no effect.
What can I do ?
Thank you
regards- This reply was modified 6 years, 1 month ago by rfouquet.
Forum: Plugins
In reply to: [Max Mega Menu] mega-toggle-label appears since last updateOk great ! that CSS trick fix the issue.
Theme was updated few weeks ago, but no fix for that.Anyway, it’s working fine now.
Thank you very much.
Regards- This reply was modified 6 years, 8 months ago by rfouquet.
Forum: Plugins
In reply to: [Max Mega Menu] mega-toggle-label appears since last updateOk, I clear the CSS but still having the same issue.
Only way to remove the MENU MENU appearing is to desactivate plugin.
Website is : https://le-lavandou.fr/Forum: Plugins
In reply to: [Max Mega Menu] mega-toggle-label appears since last updateActually it disappear when I desactivate plugin in wordpress admin panel, and I still have my menu working… I don’t really understand what’s going on.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Separator > bad positionHello John,
Your reply was very helpful, you were right, it was CSS bug on the “a tag”. Maybe conflict with my theme or plugin CSS… mess with float and display block.Anyway, I fixed my isue like this :
.rit-breadcrumb a {
font-size: 12px;
font-weight: 400;
/*display: block;*/
/* float: left;*/
line-height: 23px; }Thank you very much for help !
I appreciate ??Forum: Fixing WordPress
In reply to: Change Attachment URLs in database SQL queryHello, Any Help please ? This make me mad, I can’t fix it …
I made this test for one picture only :
UPDATE wp_posts SET guid = REPLACE (guid, ‘uploads/CCI12042016.jpg’, ‘uploads/2016/06/CCI12042016.jpg’);
UPDATE wp_posts SET post_content = REPLACE (post_content, ‘uploads/CCI12042016.jpg’, ‘uploads/2016/06/CCI12042016.jpg’);
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, ‘uploads/CCI12042016.jpg’, ‘uploads/2016/06/CCI12042016.jpg’);
SQL output is :
GUID is udpated (1 line)
post_content is updated (2 lines)
meta_value is not modifiedBut even with this changes in database, I still have broken link with URL ‘uploads/CCI12042016.jpg’ in the media library.
What else should I do ?
Forum: Fixing WordPress
In reply to: Change Attachment URLs in database SQL queryWell this plugin is not usefull for me, because I will not copy paste 10 000 URLs by hand.
The only way to do it for me is using SQL files to update directly in database and made bulk update.
The other plugin that I found usefull is this case is Media File Manager that allow to reorganize uploads folder and update database at the same time, but I have so many files that it times out during loading file list …