Title: sim89's Replies | WordPress.org

---

# sim89

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Swipebox-Overlay Error](https://wordpress.org/support/topic/swipebox-overlay-error/)
 *  [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/swipebox-overlay-error/#post-13991385)
 * For me this problem was caused by a parent theme enqueuing an outdated version
   of Swipebox. In my child theme functions file, I dequeued the outdated script
   and enqueued a new version, which I downloaded from [https://swipebox.codes/](https://swipebox.codes/)
 * The code will look something like this:
 *     ```
       // dequeue outdated swipebox from parent theme
   
       function my_dequeue_unnecessary_scripts()
       {
           wp_dequeue_script('swipebox');
           wp_deregister_script('swipebox');
       }
       add_action('wp_print_scripts', 'my_dequeue_unnecessary_scripts');
   
       // enqueue child scripts
   
       function my_scripts_load()
       {
           wp_enqueue_script('swipebox-new', get_stylesheet_directory_uri() . '/jquery.swipebox.min.js', array('jquery'));
       }
       add_action('wp_enqueue_scripts', 'my_scripts_load');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meow Lightbox] Display custom field in lightbox](https://wordpress.org/support/topic/display-custom-field-in-lightbox/)
 *  Thread Starter [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/display-custom-field-in-lightbox/#post-11329331)
 * Hi Bryan
    I ended up using FancyBox – it’s not a WordPress plugin but a JavaScript
   library that I incorporated into my build process. It’s easy to add custom fields
   when you add the lightbox code. However, it’s obviously not as user friendly 
   as a plugin.
 * Sim
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Post Popup] Breakpoint not working](https://wordpress.org/support/topic/breakpoint-not-working-3/)
 *  Thread Starter [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/breakpoint-not-working-3/#post-11287055)
 * It’s working now – the settings just needed resaving after after I deactivated
   and then reactivated plugin.
    Really useful plugin btw!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meow Lightbox] Display custom field in lightbox](https://wordpress.org/support/topic/display-custom-field-in-lightbox/)
 *  Thread Starter [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/display-custom-field-in-lightbox/#post-11180399)
 * Hi Jordy
    Thanks for getting back to me. I ended up using a different plugin,
   as I was on a deadline to get it finished. All the best Sim
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change product title and price font in mobile](https://wordpress.org/support/topic/change-product-title-and-price-font-in-mobile/)
 *  [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/change-product-title-and-price-font-in-mobile/#post-9542187)
 * Give this a try:
 *     ```
       @media screen and (max-width:540px) {
         h1.entry-title.product_title {
           font-size:18px !important;
         }
   
         span.woocommerce-Price-amount {
           font-size:16px !important;
         }
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change product title and price font in mobile](https://wordpress.org/support/topic/change-product-title-and-price-font-in-mobile/)
 *  [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/change-product-title-and-price-font-in-mobile/#post-9541709)
 * Hi
    A media query should help here, as it adds styling when the screen reaches
   a certain width.
 * Try something like this code, which will resize the text on screens below 540px
   width:
 *     ```
       @media screen and (max-width:540px) {
         h1.entry-title.product_title {
           font-size:18px;
         }
   
         span.woocommerce-Price-amount {
           font-size:16px;
         }
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Lost front page background image link](https://wordpress.org/support/topic/lost-front-page-background-image-link/)
 *  [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/lost-front-page-background-image-link/#post-9538587)
 * Hi Bub
    Can you include a link to your site? Thanks Sim
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Fixed background image](https://wordpress.org/support/topic/fixed-background-image-3/)
 *  [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/fixed-background-image-3/#post-9538583)
 * Hi Aaron
    Does your theme offer you anywhere to add CSS code? For example, if
   you select ‘appearance’ and then ‘customise’ is there an option to add your own
   CSS there?
 * If there is you can add this piece of code:
 *     ```
       .home #pg-8-0 .panel-row-style[data-hasbg="hasbg"] {
       		background-position:center !important;
       	}
       ```
   
 * It just makes sure that the background image in this slot remains centred when
   the browser is resized.
    Sim
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Tabby Responsive Tabs] Add an extra click function to tabs](https://wordpress.org/support/topic/add-an-extra-click-function-to-tabs/)
 *  Thread Starter [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/add-an-extra-click-function-to-tabs/#post-9492571)
 * That works perfectly – thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Seventeen] How to add custom field data to specific panel on the home page](https://wordpress.org/support/topic/how-to-add-custom-field-data-to-specific-panel-on-the-home-page/)
 *  Thread Starter [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/how-to-add-custom-field-data-to-specific-panel-on-the-home-page/#post-9097453)
 * Perfect – that sounds like a really elegant way to do it.
    I’ve finished on this
   project but it will definitely come in handy next time. Cheers
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Seventeen] How to add custom field data to specific panel on the home page](https://wordpress.org/support/topic/how-to-add-custom-field-data-to-specific-panel-on-the-home-page/)
 *  Thread Starter [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/how-to-add-custom-field-data-to-specific-panel-on-the-home-page/#post-9096723)
 * Hi Denise
    Thanks, that’s really appreciated – you site looks really nice too.
   No – had no responses and I couldn’t figure out a way to target the individual
   panels – so I went ahead with the CSS approach, which works ok but feels like
   a bit of a hack. It looks like you worked out how to get the text over the featured
   images as you wanted it? I just went for simplicity and absolutely positioned
   blockquotes from the associated article – so they should hopefully be easy for
   the client to change. Sim
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Self-hosted wp-admin keeps redirecting to old WordPress.com site](https://wordpress.org/support/topic/wordpressorg-wp-admin-keeps-redirecting-to-old-wordpresscom-site/)
 *  Thread Starter [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/wordpressorg-wp-admin-keeps-redirecting-to-old-wordpresscom-site/#post-6296243)
 * It turned out to be the nameservers at my host – thanks.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Self-hosted wp-admin keeps redirecting to old WordPress.com site](https://wordpress.org/support/topic/wordpressorg-wp-admin-keeps-redirecting-to-old-wordpresscom-site/)
 *  Thread Starter [sim89](https://wordpress.org/support/users/sim89/)
 * (@sim89)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/wordpressorg-wp-admin-keeps-redirecting-to-old-wordpresscom-site/#post-6296163)
 * Hi LChief – thanks for your response but unfortunately that didn’t work. I thought
   I had transferred the domain to my new host – and it is showing in my control
   panel there but still redirecting to .com

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