Forum Replies Created
-
in reply to: Change \"ALL\" text in Portfolio List at Home Page
Hello,
If you want to change text parts you can use a plugin like: Loco Translator, or modify yourself the pot file in handel/lang/ folder.
If you want to modify directly in the code go to handel/template-parts/portfolio/parts/filters.php and change the ALL text.
Thanks
in reply to: PHP Error When Using Center AlignmentHello,
Just tried directly in your website, you can fix the issue by setting a Width after switch to Center. For example on one of your homepage images I set width to 300
It works now, let me know if this helps
Thanks
in reply to: Offset for Sticky Menu with Anchor tags.I think i found a solution
On this line
linkElement : 'a:not([target="_blank"]):not([href^="#"]):not(.lightbox-gallery):not(.entry-link.lightbox):not([class^="ilightbox-"]):not(.zoom):not(.prettyphoto):not(.anchorSubmenu):not(.entry-lightbox)'Replace with:
linkElement : 'a:not([target="_blank"]):not([href^="#"]):not(.lightbox-gallery):not(.entry-link.lightbox):not([class^="ilightbox-"]):not(.zoom):not(.prettyphoto):not(.anchorSubmenu):not(.entry-lightbox):not([href^="/activities#"])'in reply to: Offset for Sticky Menu with Anchor tags.Try to set this page as an One Page. Click Edit Page -> Go to Page Options -> Activate One page
in reply to: Offset for Sticky Menu with Anchor tags.1. Try to set the page that you don’t need to be refreshed as a one page, this can fix the issue.
2. This is a theme bug, added in update list, for now do this:
on js/codeless-main.js go to PageTransition function and replace this line:
linkElement : 'a:not([target="_blank"]):not([href^="#"]):not(.lightbox-gallery):not(.entry-link.lightbox):not([class^="ilightbox-"]):not(.zoom):not(.prettyphoto):not(.anchorSubmenu)'with:
linkElement : 'a:not([target="_blank"]):not([href^="#"]):not(.lightbox-gallery):not(.entry-link.lightbox):not([class^="ilightbox-"]):not(.zoom):not(.prettyphoto):not(.anchorSubmenu):not(.entry-lightbox)'in reply to: Problem search pagePlease try again, on me is working normal
Click with the right mouse button, open Inspect Element
Then, Click the refresh button (on chrome) and continue to click until a dropdown menu is shown, then click: Empty cache and Hard Reload.
Thanks
in reply to: Problem search pageI am trying to generate the same issue, but i can’t. I have added i piece of code that can help you. Can you please re-try?
Please use an Incognito window to test.
Also, write me to the June presentation chat
in reply to: Offset for Sticky Menu with Anchor tags.Add this code before this line:
self.updateConfig();on js/codeless-main.jslet me know
Thanks
in reply to: How to add account icon in menuHello,
Near the header_search_button a href code add this:
<a class="right_search open_search_button" href="{place here the link you need}"> <i class="icon-user"></i> </a>Let me know if this works
Thanks
in reply to: Offset for Sticky Menu with Anchor tags.Hello,
Hope I understand your issue, please try this custom JS code for this:
// The function actually applying the offset function offsetAnchor() { if (location.hash.length !== 0) { window.scrollTo(window.scrollX, window.scrollY - 124); } } // Captures click events of all <a> elements with href starting with # $(document).on('click', 'a[href^="#"]', function(event) { // Click events are captured before hashchanges. Timeout // causes offsetAnchor to be called after the page jump. window.setTimeout(function() { offsetAnchor(); }, 0); }); // Set the offset when entering page with hash present in the url window.setTimeout(offsetAnchor, 0);Hope this works, let me know
in reply to: Homepage background video – cannot changeHello,
First of all be sure to select The ROW Element then at the bottom you have a Video Section that you can change the video link, view the screenshot below.
If you need a background image, remove the video link and switch Video Background Option to None (self-host now) then go to Design and add a Background Image, but be sure that you are in the right Row element.
If you have difficulties, please send me the credentials to fix this for you
Thanks
in reply to: Offset for Sticky Menu with Anchor tags.Hello,
Can you please share with me an URL so i can check the issue?
Thanks
in reply to: PHP Error When Using Center AlignmentHello,
It’s just a warning message caused by a High Strict level of error logging. Try to change WP_DEBUG to false, if this not helping, open the media.php file and on line 22
replace with:$width_style = 'style="width:'.(int) $width.'px;position:relative; left:50%; margin-left:-'.((int) $width/2).'px;" ';Let me know if this helps you
Thanks