Tagged: ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #310839

    Hi there,

    I got 2 issues.

    1) I’ve install a plug in Background Music Player
    http://codecanyon.net/item/background-music-player/7312865?ref=circlewaves

    Issue: Unable to see the playlist (Pause/Play Button) in my main page

    2) Portfolio target=”_blank”

    Question: How to set my portfolio to link to another website with (target=”_blank”)

    Thanks!

    #310946

    Hey chunhowe!

    1- Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .bmplayer-container.bmplayer-style-4 { z-index: 99; }

    2- Please refer to Peter’s post here – https://kriesi.at/support/topic/portfolio-custom-link-to-open-in-a-new-page/#post-223280

    Best regards,
    Yigit

    #311032

    Hi Yigit,

    1) Music Playlist has shown [Working fine] TQ

    2) Regarding my portfolio (target=”_blank”). I’ve follow the instruction given by you . The Text link of my portfolio works fine as (target=”_blank”).

    However when i click on the portfolio image it still open as Target=”self”

    #311036

    Hey!

    Please open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and replace

    
    $output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' $target title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
    

    with

    
    $target = !empty($custom_link) ? "target='_blank'" : '';
    $output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' $target title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
    

    and:

    
    $link_markup 	= apply_filters('avf_portfolio_custom_image_container', array("a href='{$link}' title='".esc_attr(strip_tags($title))."' ",'a'), $entry);
    

    with

    
    $target = !empty($custom_link) ? "target='_blank'" : '';
    $link_markup 	= apply_filters('avf_portfolio_custom_image_container', array("a href='{$link}'  {$target} title='".esc_attr(strip_tags($title))."' ",'a'), $entry);
    

    Regards,
    Peter

    #311463

    Hi Yigit & Peter,

    Everything is fine now!

    Awesome Support! You Guys Rock! Thanks!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Music Playlist Not Appear & target="_blank"’ is closed to new replies.