Forum Replies Created
-
Author
-
keithlewis
ParticipantHow can me implement the change in visual composer to enable that function. It rally limits the functionality of those features.
keithlewis
ParticipantI created a brand new page: http://punchme.beerpoint.us/test-grid/
I added kleo grid in to the page. The read more opens the same window instead of a new window.
keithlewis
ParticipantThe kleo posts do not open a new window even after you made the changes.you can create a new page or add element and it still open in same window. What am I missing here
keithlewis
Participantgo to punchme.beerpoint.us and you will see that the posts on the right column do not open in a new window. What plugin was installed?
Also it is not sidebars – if you look at the edit page of the url above you will see i have tabs but they don’t appear correctly on mobile devices. The tab displays the first tab content then after you have seen all the content will show the next tab
keithlewis
ParticipantJust also as another bug I find- i can create tabs perfectly but they do not appear side by side when viewing on a mobile device. they appear one below each other and do not appear to be responsive
keithlewis
ParticipantSorry for some reason the user was not added – i have verified you can login with those credentials provided above.
keithlewis
Participantusername: seventhqueen
password: 123456@@!!I would like to have the kleo posts be able to open in new tab if i select that.
keithlewis
ParticipantI pasted in at the end of the functions.php file as per below:
}
add_action(“wp_ajax_kleo_lost_password”,”kleo_lost_password_ajax”);
add_action(‘wp_ajax_nopriv_kleo_lost_password’, ‘kleo_lost_password_ajax’);//make more link open in new window
function add_blank_to_link($link) {
$pos = strpos($link, ‘a href’);
if ($pos) {
$link = substr_replace($link, ‘a target=”_blank” href’, $pos, 6);
}
return $link;
}
add_filter(‘the_content_more_link’, ‘add_blank_to_link’);
// —————————————————————————–It still did not work – the code you gave me is before the very end of the functions.php file
Am I missing anything from the code at the end ?
Thank you
-
AuthorPosts