mak1wp
Forum Replies Created
-
Forum: Plugins
In reply to: [Customizer Export/Import] Easy Google FontsAbsolute genius! Works perfectly. Huge thanks for this, really appreciate it a lot! Really awesome feature to have this compatibility with other plugins, hope it rockets your plugin to the top.
All the best mate! And thanks again!
M
Forum: Plugins
In reply to: [Customizer Export/Import] Easy Google FontsHey man,
No worries at all! Really appreciate you looking into it. I’ve got as far as exporting the EGF data – overwriting the customizer data – thats about it so not great ha.
Thanks again Justin,
M
Forum: Plugins
In reply to: [Customizer Export/Import] Easy Google FontsHey Justin,
Hope all’s well. Just thought I’d be very cheeky and ask if you’ve cracked the Easy Google Fonts compatibility?
Cheers!
MForum: Plugins
In reply to: [Customizer Export/Import] Easy Google FontsHi Justin,
Thats really great to hear! Thanks for letting me know. Hope you crack it mate!
M
Forum: Plugins
In reply to: [Customizer Export/Import] Easy Google FontsThat would be amazing! Thanks a lot Justin.
Sunny, the EGF developer tells me EGF registers/saves settings in the customizer as an array – but this is all a bit beyond me.Thanks again!
MForum: Plugins
In reply to: [Easy Google Fonts] Import / ExportThanks a lot Sunny!
All the best,M
Forum: Plugins
In reply to: [Easy Google Fonts] Import / ExportSorry, I’m not sure the above is correct.
Essentially I’m trying to import/export the font settings using this plugin https://www.ads-software.com/plugins/customizer-export-import/ but it doesn’t seem to want to work. Not sure if it’s this plugin or the import/export plugin.Thanks!
Forum: Plugins
In reply to: [Customizer Export/Import] Easy Google FontsForum: Plugins
In reply to: [Easy Google Fonts] Action Hooks and FiltersAbsolutely perfect Sunny, works perfectly.
Really appreciate your help, thanks a lot!All the best!
Forum: Plugins
In reply to: [Easy Google Fonts] Action Hooks and FiltersAh Sunny! Thanks so much for helping me out!
I was hooking into the default menu options and changing items.
The above code doesn’t seem to be working ??
It’s throwing up…
Notice: Undefined index: panel in /Applications/MAMP/htdocs/kode2/wp-content/plugins/easy-google-fonts/includes/customizer/class-egf-customize-manager.php on line 453
It unregisters the default items and creates a new tab and font option perfectly, but changing a font style within the new tab doesn’t seem to want to work.
Need your wizard skills on this one man.
Forum: Plugins
In reply to: [Easy Foundation Shortcode] Foundation 5wow, genuinely very excited to take a look. I tried amending your version of tabs/toggles for foundation 5 but couldn’t quite figure out the foreach loop.
Thanks a lot!
Haha sorry. I’m not too sure what happened, TinyMCE broke in every single part of WordPress, pages posts etc with or without the plugin :S . I probably caused it to brake somehow no doubt.
I’ve made some amendments of my own to your page builder, I contacted you a while ago regarding new features I added, including homepage/index loop pagination, row colour picker and size stepping for use with bootstrap or Foundation 4 in my case. Not sure you ever received the email? Heres a snap https://cl.ly/image/053m1B2I3C1B
If you want a copy I’d be more than happy to shoot it your way.
Please ignore my last post sorry! MCE compatibility works fine, not sure what happened.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Custom post type loop widget – wp query categoryApologies for my late reply.
I can see you’ve got it working! Amazing! Thanks so much.Just a quick note to anybody else using this if its not working, make sure you type the correct taxonomy instead of ‘category_name’ as I did above. Mine for example is…
post_type=portfolio&portfolio_cats=category-1
Thanks again Greg top work
Forum: Hacks
In reply to: Conditional script enqueueRighto, I’ve figured out a half decent way to do this, using one script page instead of load of individual ones. It loads more jQuery than loading them all separately but only a tiny bit.
The above post suggesting masonry responded slow and infinite scroll didn’t work was wrong, I must have done something iffy.
Simply split up the scripts (put them in one js file)…
//Portfolio Masonry jQuery(function($){ var $container = $('.portfolio-content-masonry'); $container.imagesLoaded( function(){ $container.isotope({ masonry: { columnWidth: 0, } }); });}); //Portfolio Infinite jQuery(function($){ var container = $('.portfolio-content-infinite'); container.infinitescroll({ navSelector : '.page-numbers', // selector for the paged navigation nextSelector : '.page-numbers a', // selector for the NEXT link (to page 2) itemSelector : '.element', // selector for all items you'll retrieve loading: { finishedMsg: 'No more pages to load.', img: 'https://i.imgur.com/qkKy8.gif' } }, function( newElements ) { var $newElems = $( newElements ).css({ opacity: 0 }); $newElems.imagesLoaded(function($){ $newElems.animate({ opacity: 1 }); container.isotope( 'appended', $newElems, true ); }); } ); });
etc etc….
call the classes on the page as needed….
<div class=”portfolio-content portfolio-content-rows portfolio-content-infinite”>
or
<div class=”portfolio-content portfolio-content-grid”>
etc etc…
Make sure to enqueue the isotope, infinite scroll scripts, as well as the script you’ve just created with all your clearly classed functions.
Hope this helps someone, took me ages to figure ??
Lastly – jQuery instead of $ – took me a while to figure that out too.