-
AuthorPosts
-
May 10, 2018 at 3:18 pm #954602
my mistake .. solved the problem. Only one question. Look link… timeline does not correctly display only 2 windows … sometimes it works correctly ..
- This topic was modified 6 years, 6 months ago by pddcoms.
May 11, 2018 at 6:40 am #955026Hey pddcoms,
I’m not sure what you mean by that, could you post a screenshot highlighting the problem and how to reproduce it please?
Best regards,
RikardMay 14, 2018 at 1:25 am #956158May 14, 2018 at 10:22 pm #956708Hi,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
( do be sure that we have enough time to debug ). - Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.Best regards,
BasilisMay 15, 2018 at 12:10 pm #956922May 17, 2018 at 4:38 am #957883Hi,
Thank you for the info. There’s an error coming from the tab section script but I don’t see any tab sections in the page.
jquery.js?ver=1.12.4:2 Uncaught Error: Syntax error, unrecognized expression: .av-section-tab-title[href=]
Did you modify any of the theme files?
Best regards,
IsmaelMay 17, 2018 at 9:57 am #958060Hi. i think No. i use only your code and CSS
I’ve seen this since you released the update on a new version of the theme. Before that everything worked correctly
- This reply was modified 6 years, 6 months ago by pddcoms.
May 19, 2018 at 11:23 am #959022Hi,
Best regards,
VictoriaMay 21, 2018 at 1:50 pm #959762Scroll to tab? It’s from here) https://kriesi.at/support/topic/link-to-tab/
May 21, 2018 at 10:25 pm #960032Hi,
Please follow the code from here
https://kriesi.at/support/topic/tab-section-link-from-content-in-one-tab-to-another-tab/Best regards,
BasilisMay 23, 2018 at 9:37 am #960688Well… if you can see i use this code from Ismael:
// custom script
add_action( ‘wp_footer’, ‘ava_custom_script_tab_section’ );
function ava_custom_script_tab_section() {
?>
<script type=”text/javascript”>
(function($) {
function scrollToTab(s, e,) {
$(s).on(e, function(event) {
var anchor, loc, cur, hash, tab, parent, pos;if( e == ‘load’ ) {
loc = window.location.hash;
hash = loc;
} else {
loc = $(this).attr(‘href’);
hash = loc.substring(loc.indexOf(‘#’));
}tab = $(‘.av-section-tab-title[href=’+ hash +’]’);
parent = tab.parents(‘.av-tab-section-outer-container’);
pos = parent.offset();tab.trigger(‘click’);
if(hash) {
setTimeout( function() {
$(window).scrollTop( pos.top – 100 )
}, 1000 );
}
});
}scrollToTab( ‘#top .iconbox_top a’, ‘click’ );
})(jQuery);
</script>
<?php
}And exactly this code has broken your system!
- This reply was modified 6 years, 6 months ago by pddcoms.
May 25, 2018 at 4:06 pm #962231 -
AuthorPosts
- You must be logged in to reply to this topic.