Title: Ciredor's Replies | WordPress.org

---

# Ciredor

  [  ](https://wordpress.org/support/users/ciredor/)

 *   [Profile](https://wordpress.org/support/users/ciredor/)
 *   [Topics Started](https://wordpress.org/support/users/ciredor/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ciredor/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ciredor/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ciredor/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ciredor/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ciredor/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Quest] Clone Module](https://wordpress.org/support/topic/clone-module/)
 *  Thread Starter [Ciredor](https://wordpress.org/support/users/ciredor/)
 * (@ciredor)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/clone-module/#post-7316148)
 * Nevermind. 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](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Duplicate default gallery creator ?](https://wordpress.org/support/topic/duplicate-default-gallery-creator/)
 *  Thread Starter [Ciredor](https://wordpress.org/support/users/ciredor/)
 * (@ciredor)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/duplicate-default-gallery-creator/#post-6588653)
 * [https://wordpress.org/plugins/wc-gallery/](https://wordpress.org/plugins/wc-gallery/)
 * This plugin have exactly what i want it seems. Time to dig in and undarstand 
   it’s code 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Open Social Share] Site flash on load/refresh](https://wordpress.org/support/topic/site-flash-on-loadrefresh/)
 *  Thread Starter [Ciredor](https://wordpress.org/support/users/ciredor/)
 * (@ciredor)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/site-flash-on-loadrefresh/#post-6571327)
 * Tried everyting and this flashing happens only if this plugin is activated.
 * Try refreshing [http://erero.vxm.pl/flashtest/](http://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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Open Social Share] Site flash on load/refresh](https://wordpress.org/support/topic/site-flash-on-loadrefresh/)
 *  Thread Starter [Ciredor](https://wordpress.org/support/users/ciredor/)
 * (@ciredor)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/site-flash-on-loadrefresh/#post-6571301)
 * Can’t find edit button (weird). Anyway.
    I made gif to better visualize problem:
   [http://i.imgur.com/jJ2DEm0.gif](http://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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Browser Check] JS in Footer](https://wordpress.org/support/topic/js-in-footer-1/)
 *  [Ciredor](https://wordpress.org/support/users/ciredor/)
 * (@ciredor)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/js-in-footer-1/#post-6446746)
 * Open 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](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Need help with custom menu-walker](https://wordpress.org/support/topic/need-help-with-custom-menu-walker/)
 *  Thread Starter [Ciredor](https://wordpress.org/support/users/ciredor/)
 * (@ciredor)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/need-help-with-custom-menu-walker/#post-6465146)
 * After few hours… somehow it’s working. Not perfect since i couldn’t get how to
   get +/- signs toggling but: [http://i.imgur.com/K2iuNo6.gif](http://i.imgur.com/K2iuNo6.gif)
   
   Such satisfaction
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[WP-Forge] Medium-only footer widgets](https://wordpress.org/support/topic/medium-only-footer-widgets/)
 *  Thread Starter [Ciredor](https://wordpress.org/support/users/ciredor/)
 * (@ciredor)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/medium-only-footer-widgets/#post-6439925)
 * It’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:
    [http://i.imgur.com/aPmbSpc.jpg](http://i.imgur.com/aPmbSpc.jpg)
   and i would like to set only last widget to take 12 columns like on right.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AGP Font Awesome Collection] Three problems](https://wordpress.org/support/topic/three-problems-2/)
 *  Thread Starter [Ciredor](https://wordpress.org/support/users/ciredor/)
 * (@ciredor)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/three-problems-2/#post-6323555)
 * It’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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can't make jquery script work.](https://wordpress.org/support/topic/cant-make-jquery-script-work/)
 *  Thread Starter [Ciredor](https://wordpress.org/support/users/ciredor/)
 * (@ciredor)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/cant-make-jquery-script-work/#post-6305692)
 * So after whole day of trying to get it working i asked for help. Then 1 hour 
   later i found this site [http://www.wpdevsolutions.com/use-parallax-in-wordpress/](http://www.wpdevsolutions.com/use-parallax-in-wordpress/)
   and yep… it’s worked perfectly…
    Uncle Google, your search indexing sucks…

Viewing 9 replies - 1 through 9 (of 9 total)