Forum Replies Created

Viewing 1 replies (of 1 total)
  • U could modify ur theme at the backend
    That’s what I figure out to link it to an url despite of selecting a ‘page’

    It’s not straight forward, u have to modify the php file in your web hosting as following

    /wp-content/themes/minamaze/admin/main/options/02.homepage.php Line 248-251

    // Get page names for links
    if ( !empty( $thinkup_homepage_section1_link ) ) $thinkup_homepage_section1_link = get_permalink( $thinkup_homepage_section1_link );
    if ( !empty( $thinkup_homepage_section2_link ) ) $thinkup_homepage_section2_link = get_permalink( $thinkup_homepage_section2_link );
    if ( !empty( $thinkup_homepage_section3_link ) ) $thinkup_homepage_section3_link = get_permalink( $thinkup_homepage_section3_link );

    to

    // Get url for links
    if ( !empty( $thinkup_homepage_section1_link ) ) $thinkup_homepage_section1_link = esc_url( $thinkup_homepage_section1_link );
    if ( !empty( $thinkup_homepage_section2_link ) ) $thinkup_homepage_section2_link = esc_url( $thinkup_homepage_section2_link );
    if ( !empty( $thinkup_homepage_section3_link ) ) $thinkup_homepage_section3_link = esc_url( $thinkup_homepage_section3_link );

    AND

    /wp-content/themes/minamaze/admin/main/options.php Line 654-655

    array(
    'id'=>'thinkup_homepage_section1_link',
    'desc' => __('Link to a page', 'redux-framework'),
    'type' => 'select',
    'data' => 'pages',
    'fold' => array('thinkup_homepage_sectionswitch'=>1),
    ),

    into

    array(
    'id'=>'thinkup_homepage_section1_link',
    'desc' => __('Link to a page', 'redux-framework'),
    'type' => 'text',
    'validate' => 'url',
    'fold' => array('thinkup_homepage_sectionswitch'=>1),

    Feel free to email me if u are not understand [email protected] ??

Viewing 1 replies (of 1 total)