Title: sciwebdesign's Replies | WordPress.org

---

# sciwebdesign

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/sciwebdesign/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/sciwebdesign/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Change order of front page..how?](https://wordpress.org/support/topic/change-order-of-front-pagehow/)
 *  Thread Starter [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/change-order-of-front-pagehow/#post-4542303)
 * Tried.
 *     ```
       <?php
       /**
       * //we hook the code on the wp_head hook, this way it will be executed before any html rendering.
       add_action ( 'wp_head' , 'move_my_front_page_text');
       function move_my_front_page_text() {
           //we unhook the content
           remove_action( '__loop' , array( TC_page::$instance , 'tc_page_content' ));
   
           //we re-hook the content. Check the priority here : set to 0 to be the first in the list of different actions hooked to this hook
           add_action( '__after_header' , array( TC_page::$instance , 'tc_page_content' ), 0);
       }
       */
       ```
   
 * and
 *     ```
       <?php
       /**
       * This is where you can copy and paste your functions !
       */
   
       //we hook the code on the wp_head hook, this way it will be executed before any html rendering.
       add_action ( 'wp_head' , 'move_my_front_page_text');
       function move_my_front_page_text() {
           //we unhook the content
           remove_action( '__loop' , array( TC_page::$instance , 'tc_page_content' ));
   
           //we re-hook the content. Check the priority here : set to 0 to be the first in the list of different actions hooked to this hook
           add_action( '__after_header' , array( TC_page::$instance , 'tc_page_content' ), 0);
       }
       ```
   
 * The second one gets rid of the text box completely. The first method does nothing.
 * I HATE PHP.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Change order of front page..how?](https://wordpress.org/support/topic/change-order-of-front-pagehow/)
 *  Thread Starter [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/change-order-of-front-pagehow/#post-4542302)
 * [Still doesn’t work. ](http://paulairey.com/blog/)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Change order of front page..how?](https://wordpress.org/support/topic/change-order-of-front-pagehow/)
 *  Thread Starter [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/change-order-of-front-pagehow/#post-4542298)
 * Done the child theme, edited functions.php in the child theme and it still doesn’t
   work.
 *     ```
       //we hook the code on the wp_head hook, this way it will be executed before any html rendering.
       add_action ( 'wp_head' , 'move_my_front_page_text');
       function move_my_front_page_text() {
           if ( !tc__f('__is_home') )
               return;
               remove_action( '__loop' , array( TC_page::$instance , 'tc_page_content' ));
           add_action( '__after_header' , array( TC_page::$instance , 'tc_page_content' ), 0);
       }
       ```
   
 * And then the content just goes missing…
 * I can show you the site now. It is [here](http://lindajosephinteriors.co.uk/).
 * ?? any ideas? They want the text above the slider on the home page only.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Change order of front page..how?](https://wordpress.org/support/topic/change-order-of-front-pagehow/)
 *  Thread Starter [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/change-order-of-front-pagehow/#post-4542241)
 * Do I add it to index.php rather than functions.php?????
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Change order of front page..how?](https://wordpress.org/support/topic/change-order-of-front-pagehow/)
 *  Thread Starter [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/change-order-of-front-pagehow/#post-4542240)
 * That works for you?
 * Not here. The main text has disappeared completely.
 * This isn’t the site I am doing it for…I just installed the same versions on my
   site before adding it to the client I am working for’sDummy site [here.](http://paulairey.com/blog)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Change order of front page..how?](https://wordpress.org/support/topic/change-order-of-front-pagehow/)
 *  Thread Starter [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/change-order-of-front-pagehow/#post-4542239)
 * Superb. I am very grateful. I will try it.
 * Bloody hate php.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Change order of front page..how?](https://wordpress.org/support/topic/change-order-of-front-pagehow/)
 *  Thread Starter [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/change-order-of-front-pagehow/#post-4542047)
 * I’ve tried.
 *     ```
       add_action ( 'wp_head' , 'place_slider_before_featured_pages' );
       function place_slider_before_featured_pages() {
           if ( !tc__f('__is_home') )
               return;
           remove_action( '__after_header' , array( TC_slider::$instance , 'tc_slider_display' ));
           add_action( '__before_featured_pages', array( TC_slider::$instance , 'tc_slider_display' ));
       }
       ```
   
 * With no joy.
 * Help pretty please.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Change order of front page..how?](https://wordpress.org/support/topic/change-order-of-front-pagehow/)
 *  Thread Starter [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/change-order-of-front-pagehow/#post-4542043)
 * I got that as a fix for putting the slider above the footer. I want a different
   order. Only for the home page though.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Moving slider on home page.](https://wordpress.org/support/topic/moving-slider-on-home-page/)
 *  Thread Starter [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/moving-slider-on-home-page/#post-4514226)
 * Maybe not.
 * I actually would like the page content first, then the slider, then the three
   info boxes, then the footer on the home page only.
 * Help, please.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Moving slider on home page.](https://wordpress.org/support/topic/moving-slider-on-home-page/)
 *  Thread Starter [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/moving-slider-on-home-page/#post-4514219)
 * Found the answer, I think.
 * [http://wordpress.org/support/topic/moving-slider?replies=9](http://wordpress.org/support/topic/moving-slider?replies=9)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] remove some tag and cloud function](https://wordpress.org/support/topic/remove-some-tag-and-cloud-function/)
 *  Thread Starter [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-some-tag-and-cloud-function/#post-4430989)
 * Worked thanks.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Upgrade 3.15 problem](https://wordpress.org/support/topic/upgrade-315-problem/)
 *  [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/upgrade-315-problem/#post-4429189)
 * Cheers chappie. Much obliged.
 * Happy xmas.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] 3.15](https://wordpress.org/support/topic/315-2/)
 *  Thread Starter [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/315-2/#post-4430029)
 * Yes. That’s the problem. Thanks. I will keep checking for the update.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Upgrade 3.15 problem](https://wordpress.org/support/topic/upgrade-315-problem/)
 *  [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/upgrade-315-problem/#post-4429187)
 * Where can I download the earlier versions from?
 * I’ll wait for the update but would still be handy to know where to get the older
   versions from. The developer tool was handy.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Make feature page images circular](https://wordpress.org/support/topic/make-feature-page-images-circular/)
 *  [sciwebdesign](https://wordpress.org/support/users/sciwebdesign/)
 * (@sciwebdesign)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/make-feature-page-images-circular/#post-4251648)
 * I suppose you want a better answer than IE is a great big pile of…?
 * Some tips are here.
 * [http://wordpress.org/support/topic/feature-circles-not-working-in-ie-but-fine-in-firefox?replies=7](http://wordpress.org/support/topic/feature-circles-not-working-in-ie-but-fine-in-firefox?replies=7)

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/sciwebdesign/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/sciwebdesign/replies/page/2/?output_format=md)