champdor
Forum Replies Created
-
Hi Elvis,
First thank you for looking at the issue.
I disabled Elementor Lightbox but it did not solve the problem. Instead of EL the image is now open with a simple link. (Not overlay, black background, only browser back.) So it seems that the image is there and WP opens it–and FooGallery is not firing. You can try on the live page.
I guess if I disable image opening it will do nothing which is not a good solution.
Any insight?
ChampdorDear Laszlo,
Thank you for the speedy solution. It was easier to revert to normal wp-login.php. The exit() –> return solved the problem. OK I’m not a real programmer ??
Thank you again, you rock!
Champdor
Forum: Plugins
In reply to: [WP YouTube Lyte] Custom player sizeHi Frank,
Thank you for the help. It was flattering you assumed that from this info I can do it but I lived up o the task.
It works.
For others to help here is my code to copy:
// YT LYTE: custom player size (replacing 1280px!) add_filter( 'lyte_match_postparse_template', 'piq_custom_yt_playersize', 10, 2 ); function piq_custom_yt_playersize( $lytetemplate, $templateType ) { $newtemplate = str_replace( 'style="width:1280px;max-width:100%', 'style="width:1432px;max-width:100%', $lytetemplate ); return $newtemplate; }
All the best,
ChampdorForum: Plugins
In reply to: [WordPress Ajax Load More and Infinite Scroll] Not permision for third CPTSorry, I forgot to enable it in plugin settings. Great plugin! ??
Best regards,
ChampdorForum: Plugins
In reply to: [Max Mega Menu] Hide other submenus when menu item clickedThank you. I will look into Pro then.
All the best,
ChampdorForum: Plugins
In reply to: [Max Mega Menu] Hide other submenus when menu item clickedHi Tom,
I’m getting closer in understanding but not in making it work.
No, no custom jQuery is in use so far. Only MMM settings.1. I still need to make open submenus disappear if another menu item is clicked. I boiled down that I need to remove
.mega-toggle-on
class from the other menu items. I tried this code (and several other versions of it):jQuery(document).ready(function ($) { var $allOpenSubmenus = $('#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on'); $('#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > a.mega-menu-link').click(function (e) { var target = $( e.target ); $allOpenSubmenus.not( target.parent() ).removeClass('mega-toggle-on'); }); });
But I suck at jQuery.
2. I will need to put the submenus to the top of the mega menu—not in line with its parent.
3. I need to make the mega menu to reach the bottom of the page because the Tiles submenu is out of the mega menu space. How can I make my mega menu full screen?
Regards,
ChampdorForum: Plugins
In reply to: [Import any XML, CSV or Excel File to WordPress] Import buttons not workingJust for an update clearing the Autoptimize cache solved the problem. Also disabled syntax highlighting.
Cheers,
ChampdorWow thank you. It’s working.
Best regards,
ChampdorForum: Plugins
In reply to: [OSM - OpenStreetMap] No pins on the map since updateHi @mika,
Last month I managed to solve the problem by downgrading to 5.6. Really 5.6 supported CPTs.
But I appreciate you took the time to sort this out. I definitely will try 5.8 since I need this feature again in a new project.
Thank you for letting me know.
Champdor
Forum: Plugins
In reply to: [OSM - OpenStreetMap] No pins on the map since updateHello @mika,
Map is showing correctly but no pins. The shortcode for desktop is:
[osm_map_v3 map_center="47.2,19.51" zoom="7.8" width="100%" height="700" tagged_type="telepules"]
Champdor
Problem is still there but there is console errors this time.
Here’s the console log upon clicking ‘Connect Your Account’:
https://posdev.hu/rm-console-errors.pngThere was no WP error log generated. No server errors.
What gives?
Champdor
As I wrote I experienced this 4 times on separate FRESHLY INSTALLED WordPress. Like 5 minutes old. With minimal plugins. But next time I wil check the error log. So I don’t have to use the other plugin beginning with Y.
Forum: Plugins
In reply to: [WP Post Popup] Want to use Elementor Single Post Template for Modal contentFollowing, same problem.
Forum: Themes and Templates
In reply to: [Storefront] Simple modification of archive page for CPTYes, I found it. Basically I unhooked the featured image (post_thumbnail in Storefornt) and hooked it before the post. See code below.
if ( is_single() ){ remove_action( 'storefront_post_content_before', 'storefront_post_thumbnail', 10 ); add_action( 'storefront_single_post_top', 'storefront_post_thumbnail' ); }
Then you can do some css magic to make it nice.
Hope this helps,
ChampdorForum: Plugins
In reply to: [Smash Balloon Social Photo Feed – Easy Social Feeds Plugin] Custom layoutYes, your idea was great! Thank you.
So far both of your plugin works great. Review is coming.
All the best,
Champdor