Ciredor
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Quest] Clone ModuleNevermind. Managed to add it myself. Not going to share it thought, as pacethemes support seems to be dead, both there and on official support forum.
Forum: Hacks
In reply to: Duplicate default gallery creator ?https://www.ads-software.com/plugins/wc-gallery/
This plugin have exactly what i want it seems. Time to dig in and undarstand it’s code ??
Forum: Plugins
In reply to: [Open Social Share] Site flash on load/refreshTried everyting and this flashing happens only if this plugin is activated.
Try refreshing https://erero.vxm.pl/flashtest/
(I just put it together. fresh install wordpress, empty database and only this plugin. The same flash is visible on any theme i use too.)Checked all major browsers and it’s flash only on Firefox (any version).
Forum: Plugins
In reply to: [Open Social Share] Site flash on load/refreshCan’t find edit button (weird). Anyway.
I made gif to better visualize problem:
https://i.imgur.com/jJ2DEm0.gif
Page refreshed few times (F5) show this flash everytime when plugin is active. Even on page where there’s no social buttons included.Forum: Plugins
In reply to: [Advanced Browser Check] JS in FooterOpen plugins > editor > advenced-browser-check/abc-core.php and find these lines :
// Load jQuery wp_enqueue_script( "jquery" ); // jQuery cookie, used to add a cookie so visitors can hide the popup wp_enqueue_script( "apc_jquery_cookie", plugins_url( '/js/jquery.cookie.js', __FILE__ ), array( 'jquery' ) ); // The ajax request so the plugin works with caching plugins wp_enqueue_script( "abc_script", plugins_url( '/js/script.js', __FILE__ ), array( 'jquery' ) );
In my case i use external jquery so i commented first line. For jquery.cookie.js and script.js to load in footer change lines to :
wp_enqueue_script( "apc_jquery_cookie", plugins_url( '/js/jquery.cookie.js', __FILE__ ), array( 'jquery' ), '', true ); wp_enqueue_script( "abc_script", plugins_url( '/js/script.js', __FILE__ ), array( 'jquery' ), '', true );
and repeat on every update.
Forum: Hacks
In reply to: Need help with custom menu-walkerAfter few hours… somehow it’s working. Not perfect since i couldn’t get how to get +/- signs toggling but: https://i.imgur.com/K2iuNo6.gif
Such satisfactionForum: Themes and Templates
In reply to: [WP-Forge] Medium-only footer widgetsIt’s complicated so maybe my explanation was not enough.
I changed case 3 to:case '3': $class = 'small-12 medium-6 large-6';
so even if there’s 3 widgets all of them take half space (6/12columns). But the problem is that the columns value is set the same for all widgets.
So i get 6+6+6 columns and another 6 empty like on the left:
https://i.imgur.com/aPmbSpc.jpg
and i would like to set only last widget to take 12 columns like on right.Forum: Plugins
In reply to: [AGP Font Awesome Collection] Three problemsIt’s still on localhost so i can’t. But after some more detailed searching i found that 2. was caused not by this plugin but SiteOrigin editor ( from SiteOrigin Widgets Bundle ) so i guess i will go there to report it.
Forum: Fixing WordPress
In reply to: Can't make jquery script work.So after whole day of trying to get it working i asked for help. Then 1 hour later i found this site https://www.wpdevsolutions.com/use-parallax-in-wordpress/ and yep… it’s worked perfectly…
Uncle Google, your search indexing sucks…