• I have Minamaze 1.1.5., and I cannot add HTML to the featured areas. After the 1.1.0. update, I could not add HTML, but with the help of word press forum member swsupport I learned how to edit my files to add the HTML back in. Here is a link to that forum thread

    Now, with the latest Minamaze update, I can no longer use that technique to add HTML to my files. Can anyone help me bring back HTML? I am willing to edit my php files and such.

Viewing 4 replies - 1 through 4 (of 4 total)
  • solution: you can add an html code by manually like bold lane in modified code

    original code:
    ‘<div class=”entry-content”>’,
    ‘<h3>’ . esc_html( $thinkup_homepage_section1_title ) . ‘</h3>’ . wpautop( do_shortcode ( esc_html( $thinkup_homepage_section1_desc ) ) ),

    ‘<p>‘ . __( ‘Read More’, ‘lan-thinkupthemes’ ) . ‘</p>’,
    ‘</div>’,

    modified code:

    ‘<div class=”entry-content”>’,
    ‘<h3>’ . esc_html( $thinkup_homepage_section1_title ) . ‘</h3>’ . wpautop( do_shortcode ( esc_html( $thinkup_homepage_section1_desc ) ) ),
    ‘<p>Add Back Link</p>’,
    ‘<p>‘ . __( ‘Read More ‘, ‘lan-thinkupthemes’ ) . ‘</p>’,
    ‘</div>’,

    Thread Starter didde90

    (@didde90)

    Thanks @sarpworrks for your help. I am a little confused though. Would I simply add

    ‘<p>Add Back Link</p>’

    ?
    Your link is actually a link to your page. Do I need to have a link to something?

    I just ran in to this same problem. I was finally able to get the featured area to display my HTML (and not just the code) by commenting out line 642 (for featured area 1) in minamaze/admin/main/options.php. This doesn’t put it through the HTML validator. My problem now is that this has to be done in the core files, as when I made the changes in my child theme nothing changes. I’m hoping someone has a fix for that so I don’t lose all of my changes when updating.

    @didde90

    Im sorry. I did not check this subject for a long time.

    I copied and pasted then I did not pay attention.It was my bad.

    Add Back link section was a code.when i typed the code, it did not show it. That is why, you could not see it.

    <p>Add Back Link</p> means <p><a.href=”https://www.”>Description</p&gt;

    PS: without . between a and href

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Featured Areas don't accept HTML’ is closed to new replies.