Title: hoeby's Replies | WordPress.org

---

# hoeby

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

 *   [Profile](https://wordpress.org/support/users/hoeby/)
 *   [Topics Started](https://wordpress.org/support/users/hoeby/topics/)
 *   [Replies Created](https://wordpress.org/support/users/hoeby/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/hoeby/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/hoeby/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/hoeby/engagements/)
 *   [Favorites](https://wordpress.org/support/users/hoeby/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: [[Simplify] Link Slider Bar Images to Pages within Site](https://wordpress.org/support/topic/link-slider-bar-images-to-pages-within-site/)
 *  [hoeby](https://wordpress.org/support/users/hoeby/)
 * (@hoeby)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/link-slider-bar-images-to-pages-within-site/#post-5858290)
 * I also use the simplify theme.
    On my website, i changed the slider image code.
 * I am using an slideshow plugin (Meteor slides)
 * Go to the editor of the theme. Modify template “front-page.php”
    There you find
   the slider code, change this. I have used the code below.
 *     ```
       <div id="slide-container">
        <div id="slide">
        <?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); } ?>
        </div>
        </div> <!-- slide-container -->
       ```
   
 * Whit this i can add a link tho each picture you see.
    As i told, my website doesn’t
   use this, but it is possible.
 * My website:
    [http://mfg-selfkant.de/](http://mfg-selfkant.de/)
 * JUST TAKE CARE:
    Before you modify something in the editor. Copy the default 
   program, so you Always can go back
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Simplify] HTML in Row Description and quote text box](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/)
 *  Thread Starter [hoeby](https://wordpress.org/support/users/hoeby/)
 * (@hoeby)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/#post-5331820)
 * I solved it an other way.
    I didn’t ad a JS-footer. But changed the “front-page.
   php” from the simplify theme.
 * This is what i made. Now it worked and also the other links are working
 *     ```
       get_header(); ?>
       <div id="header-bottom"> </div>
       <div id="container">
       <h1 id="heading"><?php echo esc_textarea(of_get_option('heading-text', __('Welcome to the World of Creativity!','simplify'))); ?></h1>
       <p class="heading-desc">Herzlich Willkommen auf der Homepage der ModellFlugGruppe Selfkant "Grenshoppers". <BR> Wir wünschen unseren Besuchern viel Spass!<BR><a href="http://mfg-selfkant.de/sub-themes-2/wetter"> Für actuel wetter flugplatz, bitte klick Sie hier.</p>
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Simplify] HTML in Row Description and quote text box](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/)
 *  Thread Starter [hoeby](https://wordpress.org/support/users/hoeby/)
 * (@hoeby)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/#post-5331819)
 * i need to come back from my answer.
    When i changed it to “container”. Then HTML
   code in the Header Disciption works. But other HTML links don’t work anymore.
   When i remove the JS-footer, then the other links work again.
 * strange
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Simplify] HTML in Row Description and quote text box](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/)
 *  Thread Starter [hoeby](https://wordpress.org/support/users/hoeby/)
 * (@hoeby)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/#post-5331818)
 * Found it.
    I was right. It was not “heading-desc” as target description. Needed
   to change it to “container” and it worked
 * Changed it to this
 *     ```
       var $ = jQuery,
           target = $('#container p, blockquote'),
           htmlString;
   
       $.each(target, function() {
           htmlString = $(this).text();
           $(this).html(htmlString);
       });
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Simplify] HTML in Row Description and quote text box](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/)
 *  Thread Starter [hoeby](https://wordpress.org/support/users/hoeby/)
 * (@hoeby)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/#post-5331817)
 * I am getting forward. Whit importing HTML in the simplify front page, tekst block“
   Front Page Heading Description”
    I don’t know exactly if i have searched the 
   right target discription (heading-desc).
 * I added this script in CSS-JS-PHP. But unfortunally i didn’t work.
    Link to website:
   [http://mfg-selfkant.de/](http://mfg-selfkant.de/)
 * Somebody knows what i did wrong?
 *     ```
       var $ = jQuery,
           target = $('#heading-desc p, blockquote'),
           htmlString;
   
       $.each(target, function() {
           htmlString = $(this).text();
           $(this).html(htmlString);
       });
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Simplify] HTML in Row Description and quote text box](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/)
 *  Thread Starter [hoeby](https://wordpress.org/support/users/hoeby/)
 * (@hoeby)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/#post-5331656)
 * it worked, thank you very much
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Simplify] HTML in Row Description and quote text box](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/)
 *  Thread Starter [hoeby](https://wordpress.org/support/users/hoeby/)
 * (@hoeby)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/#post-5331651)
 * Something went not right. I posted a HTML link whit button option. But the half
   HTML code was gone.
 * Now i posted a standard HTML link, but still doesn’t work. See [http://www.mfg-selfkant.de](http://www.mfg-selfkant.de)
   And then down the bottom of the side.
 * The plug-in for the featured box works.
 * But i want to use something like this for the quote box and row description. 
   I think i need to change the text “featured-boxs” to the text where to find the
   quote box. But i don’t know which text the programmer did use, to discripe the
   quote box in the program software
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Simplify] HTML in Row Description and quote text box](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/)
 *  Thread Starter [hoeby](https://wordpress.org/support/users/hoeby/)
 * (@hoeby)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/#post-5331496)
 * I only added the link to the admin site in the quote box, you can see that it
   doesn’t work
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Simplify] HTML in Row Description and quote text box](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/)
 *  Thread Starter [hoeby](https://wordpress.org/support/users/hoeby/)
 * (@hoeby)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/html-in-row-description-and-quote-text-box/#post-5331495)
 * [http://www.mfg-selfkant.de](http://www.mfg-selfkant.de)

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