Forum Replies Created
-
AuthorPosts
-
June 10, 2017 at 7:53 pm in reply to: Linking to/urls for specific tabs in the new tag section #806358
Hi,
I have edited the file: “enfold\config-templatebuilder\avia-shortcodes\tab_section.php”
added: $tab_title_id = str_replace(‘ ‘, ”, $tab_title);
to the line 382and edited line 383
from : $tabs .= “<a href=’#{$tab_title}’ data-av…
to: $tabs .= “<a href=’#{$tab_title_id}’ data-av…this only removed the space in the IDs for every title (which has a space ex: “Some Title”) in the title container, but it works even on firefox now.
for now this seems to be working, but I’ll be glad if you have a better solution for this.Thanks again !
June 10, 2017 at 6:15 pm in reply to: Linking to/urls for specific tabs in the new tag section #806350Hi,
not sure if I should be posting this question here.
There is a problem with the tab sections IDs, the ID is set using the title, so for example when I use this title: “Some Title”, the ID will be “#Some Title”, With a space , and it doesn’t work on FireFox. I had to add a dash “-” instead of the space in the title to make it work, so the new title is “Some-Title”.I have checked the link from Victoria’s reply above, the user who asked the question posted a link to his website which also have the same problem.
Is there any way to fix this? even if the ID is set automatically
Thank you
Hi,
I’m having the same problem here, I tried the above code:
add_filter(‘avia_post_slide_query’, ‘enfold_customization_query_custom’);
function enfold_customization_query_custom( $query ) {
global $post;
if ( is_single() ) {
$query[‘post__not_in’] = array($post->ID);
return $query;
}
}Seems to be working with grid layout only, but my blog layout doesn’t show up (which is also a grid layout).
any idea what could be the problem ?Thanks
EDIT:
Hi,
a friend helped and this fixed the problem:
add_filter(‘avia_post_slide_query’, ‘enfold_customization_query_custom’);
function enfold_customization_query_custom( $query ) {
global $post;
if ( is_single() ) {
$query[‘post__not_in’] = array($post->ID);
return $query;
}
else
return $query;
}Thanks !
- This reply was modified 7 years, 11 months ago by sam-to-911. Reason: Solved
Hi Rikard,
Always a pleasure to help :)
Thanks
Hi,
I’m glad I could help :)
also, I don’t think this will take much time to do, even with a 20+ pages website.
if you want to set the same height value for multiple elements, you can set the same ID for all the color sections you’d like to apply this for.
this way you can set the ID (for example: height-100-section) to each color section you need and choose a custom height with any value, then add the following to your custom css:#height-100-section .container {
height: 100vh !important;
}I think this can be done in 15 mins for 20 pages.
Sorry I’m not one of the support team, If I was I would have done it for you.Good luck !
Hey,
I just found this: http://wordpress.stackexchange.com/questions/5742/change-the-author-slug-from-username-to-nickname
This will change the link from “/author/username” to “/author/nickname”this is perfect, this way anyone who’s trying to find your admin username will only see the nickname (which should be changed to anything else from the profile edit page)
Thanks
Hi,
Thank you ! That changed the name, but a link is still there with the username.
is there a way to remove the link ?Thanks again :D
Hi,
This worked for me, not sure if it’s the best solution but it works :)
edit your color section –> (Section minimum height) select “Custom height in pixel” then set it to any value in px, this will keep the elements inside the section aligned in the middle (vertical align).
then type an ID for the section (For Developers: Section ID).finally add this to your custom css:
#your-section-id .container {
height: 100vh !important;
}vh is Viewport Height, edit the value as needed , (100vh is 100%) you can google it to learn more about this ;)
Goodluck
Hi,
I’m having the same problem.
all the pages with layer slider wont load, and any other pages without slider loads perfectly.
I have tried editing and removing the layer slider element from one page and the page is loading perfectly, and when I try to edit any slider I only get the layerslider update message.I’m using the latest version of enfold 3.3.2 and wordpress 4.3.1 on WAMP.
I tried and downloaded the theme again, also didn’t work.
Please let me know if there is anything else I should try.Thanks in advance,
- This reply was modified 9 years ago by sam-to-911.
Hi,
I’ve fixed that myself ;)Thanks
Hi Yigit,
I’m using version 3.0.1
I thought you could tell me which files are changed.I guess I have to do everything again..
Thanks for your help :)
I will post the translation files as soon as its ready ;)Hi Yigit
Its not online yet.. im working on localhost …
What im trying to do is with the submenu (mega menu ).
I would like to change it to full width.
is it possible ?Thanks
-
AuthorPosts