Forum Replies Created
-
AuthorPosts
-
Hi,
Gern geschehen! Please feel free to open another if you need anything else. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
Did you create a separate menu for each language? Please note that each language in a Poylang installation should have a separate menu. The following documentations should help.
// https://polylang.pro/doc/create-menus/
// https://polylang.wordpress.com/documentation/setting-up-a-wordpress-multilingual-site-with-polylang/navigations-menus/Best regards,
IsmaelHey Jak73,
Thank you for the inquiry.
You can attach a function to the wp_head hook to insert meta tags within the head element, and use the is_page conditional function to control in which pages should the meta tags render. Please check the documentations below for more info about the hook and the function.
// https://developer.wordpress.org/reference/hooks/wp_head/
// https://developer.wordpress.org/reference/functions/is_page/This is documentation about robots meta tgs.
// https://moz.com/learn/seo/robots-meta-directives
Best regards,
IsmaelHey spooniverse,
Thank you for the inquiry.
You can combine multiple taxonomy queries (tax_query) using the key “relation” with the value AND or OR. Please check the code examples in the following documentation.
// https://developer.wordpress.org/reference/classes/wp_query/#taxonomy-parameters
Best regards,
IsmaelHey InTraHealth-Envold,
Thank you for the inquiry.
What do you mean by “google maps tags”? Please provide a screenshot using imgur or dropbox. The filters above should have prevented the default Google map scripts from loading. Are you using a different plugin for the maps?
You should also update the theme to the latest version, 4.8.9.1, and temporarily disable the Performance > File Compression settings afterwards.
Best regards,
IsmaelHi,
Try to add a custom css class name or ID to the text element (Advanced > Developer Settings > Custom CSS Class), then use it to apply the font or use it to change the style of the element.
#top #wrap_all .av-custom-text { font-family: "adobe-caslon-pro"; }The custom css class name in the code above is “av-custom-text”. For more about info about custom css, please check this documentation.
// https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
IsmaelHey Jens Lumpe,
Thank you for the inquiry.
This is an issue with fixed backgrounds on iOS devices. Unfortunately, there is no fix for this issue yet aside from reverting the background attachment from fixed to scroll. Please check the following thread for more info.
// https://kriesi.at/support/topic/no-title-image-on-tablet-landscape-view/#post-1321910
Best regards,
IsmaelHey fkm,
Thank you for the inquiry.
The css code below should remove the separator, increase the space between the items and adjust the font weight of the text.
.taglist .tag-seperator { display: none; } .taglist a { margin-right: 20px; font-weight: bold; }To reverse the order of the items, try to add this css.
.taglist { display: flex; flex-flow: row-reverse; justify-content: flex-end; } .taglist a:first-child { order: 1; }Best regards,
IsmaelHey Veronika,
Thank you for the inquiry.
This option is not available in the Blog Posts element or any of the element that displays the default post type, but you can manually create the same layout using the Grid Row element. If you are using the portfolio items, the Portfolio Grid element has an option to display the content and the image side by side, but the items do not alternate, image is always displayed on the right and the content on the other side.
Best regards,
IsmaelFebruary 14, 2022 at 5:05 pm in reply to: Move Product Archive Menu above content on mobile #1340540Hi!
Sorry about that. We forgot to adjust this condition in the script above.
if( is_archive && is_mobile || true ) {You have to remove the last condition, or this part.
|| trueWe adjusted the code above in case you’re not sure what to remove.
Regards,
IsmaelHi,
Glad to know that it is now working properly. To reverse the order of the post navigation, try to include this code in the functions.php file.
add_filter( 'avf_post_nav_entries', 'avf_post_nav_entries_mod_reverse', 10, 3); function avf_post_nav_entries_mod_reverse($entries, $settings, $queried_entries) { if($settings['type'] == 'portfolio') { $settings['same_category'] = true; $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); } return $entries; }Best regards,
IsmaelHi,
Thank you for the info.
It seems to be working correctly on our end now as shown in the screenshot below. Have you managed to find the cause of the issue? It might be a z-index issue based on the screenshots above. Increasing the stack order or the z-index property of the second section should fix the issue.
Best regards,
IsmaelHey peterolle,
Thank you for the inquiry.
This is not possible out of the box. You will have to manually modify the timeline template and include a posts query to it. Unfortunately, this is beyond the scope of support.
Best regards,
IsmaelHi,
Thank you for the info.
Please ask your hosting provider to update cURL version from 7.38.0 OpenSSL/1.0.1t to version 7.74.0 OpenSSL/1.0.1t and also upgrade PHP from version 7.3.32 to the latest version. After the software update, install the WP Reset plugin to reset the database or the installation, then try to import the demo again.
Best regards,
IsmaelFebruary 14, 2022 at 4:22 pm in reply to: Private blog posts and Grid view problem for subscribers #1340525Hi,
We tested the blog posts element on our own installation and all private posts display immediately even without the filter above, so there must be something in the members’ plugin that is preventing the posts to display on your site. Please keep the filter in the functions.php file for now.
Best regards,
IsmaelFebruary 14, 2022 at 4:14 pm in reply to: Plugin DigiMember mit Enfold One Page Portofolio-Demo ein gute Wahl? #1340524Hi,
1.) We haven’t used the plugin before, so we don’t really know if it is compatible with the theme. A lot of plugins if not all are compatible with the theme but they usually require a modification or two.
2.) You can use plugins like WP Migrate DB to transfer a WordPress database to another. Make sure to create a site backup or a restore point before doing this.
3.) We are not really sure what you’re asking but each site or domain only requires a single license.
Best regards,
IsmaelHi,
Sorry for the slight delay. For the layer slider, you have to modify the Slide > Effects > Parallax Defaults settings to apply a parallax effect to the main background. You can also apply a separate parallax effect for each layer in the Transition > Parallax Transition panel.
Best regards,
Ismael3February 11, 2022 at 10:04 am in reply to: Custom Social Media Icon to Top Bar (Using Image) #1340120Hey Eleina_Shinn,
Thank you for the inquiry.
Did you select or add the new social icon in the Enfold > Social Profiles panel? The filter above will just create an option for the social icon but it will not add it automatically in the list. You have to add a new entry in the social settings panel and select the new icon.
Best regards,
IsmaelFebruary 11, 2022 at 10:00 am in reply to: Where's the best place to put custom CSS + should I be enqueuing it? #1340119Hey Ben,
Thank you for the inquiry.
Either way should work fine but we recommend adding all your custom css in the Quick CSS field or in the style.css file within the child theme directory. All custom modifications in the Quick CSS field are loaded after the default stylesheets, so it is quite useful when you are trying to override or adjust the style of a certain element.
Best regards,
IsmaelFebruary 11, 2022 at 9:49 am in reply to: Plugin DigiMember mit Enfold One Page Portofolio-Demo ein gute Wahl? #1340116Hey Jörg,
Thank you for the inquiry.
Are you planning to serve the members’ area in a different domain? If you are going to use a different domain for the members, then you will need another license because a single license can only be used on a single domain. Another license is not needed if the members’ area is in the same domain as the main site. And regarding the demo, please note that importing another demo will override the current one.
Best regards,
IsmaelHey Heldin21,
Thank you for the inquiry.
You can adjust the number of footer columns in the Enfold > Footer > Footer Columns settings. Default number is 4 but it can be adjusted to 5. You can also set a page as custom footer in the Default Footer & Socket Settings.
Best regards,
IsmaelFebruary 11, 2022 at 9:38 am in reply to: Stye for a link added to the Cookie Consent Message Bar #1340113Hi,
Thank you for the info.
The class name privacyclass is directly applied to the link tag or element, so the css should be.
a.privacyclass { color: azure; }— or —
. privacyclass { color: antiquewhite; }You can also try this css to include all links inside the avia_cookie_text container.
.avia_cookie_text a { color: burlywood; }Best regards,
IsmaelFebruary 11, 2022 at 9:31 am in reply to: Matomo Analytics Cookies Opt-In Reload After Accept #1340108Hey architekt-ur,
Thank you for the inquiry.
The privacy options in the theme can only handle cookies from services that are actually included in the package, such as cookies from Google maps, analytics, spam protection or reCAPTCHA, Google fonts and embedded Youtube videos. Cookies that are generated by external services that are not included in the list will have to be defined in the Enfold > Privacy & Cookies > Cookie Handling > Advanced Options > Additional Custom Cookies section. Unfortunately, we cannot guarantee that the theme will be able to successfully handle those cookies even when they are defined due to certain browser restrictions. To learn more about the privacy options, please check this documentation.
// https://kriesi.at/documentation/enfold/privacy-cookies/#additional-custom-cookies
Best regards,
IsmaelHey ClaudiaEustergerlingDesign,
Thank you for the inquiry.
We provided the link in the private field. However, please note that we are not providing support for this item any further because the theme is no longer available on Themeforest.
Best regards,
IsmaelFebruary 11, 2022 at 9:11 am in reply to: Displaying 2 Widgets – 36x36px – Next to Each Other on All Screen Sizes #1340102Hi,
Thanks for the update.
1.) You have to add a custom css class name or ID to the columns and replace the autogenerated column ID that we used above to target the columns. You can then save the content as template and use it on other pages, or you can set place the elements in a different page and set it as footer in the Enfold > Footer > Default Footer & Socket Settings settings.
2.) That is the color section padding. You can adjust it by editing the color section’s Layout > Margin & Padding > Section Padding settings.
Best regards,
IsmaelFebruary 11, 2022 at 9:05 am in reply to: Hero image with title and excerpt on homepage, individual post pages? #1340098Hi,
No problem! Glad we could be of help. Please feel free to open another thread if you have more questions. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the info.
We checked the site again today and the posts are still there. Did you post a new article aside from the latest item titled “10 ways to stay committed”? The two posts that you mentioned above are also displaying properly on mobile view. Please check the screenshots below.
Have you tried disabling the plugins temporarily? You should also disable the Performance > File Compression settings temporarily while testing the site.
Best regards,
IsmaelHi,
Thank you for the update.
Where can we check the tab section? Please provide the site URL so that we can inspect the element directly. To learn more about custom css modifications, please check this documentation.
// https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
IsmaelFebruary 11, 2022 at 8:49 am in reply to: Private blog posts and Grid view problem for subscribers #1340087Hi,
Thank you for the info.
We were not able to access the site via FTP but we have found out that the post slider or blog posts element is set to not display private posts by default. We had to use this filter in the functions.php file to adjust the default query and display the private posts.
add_filter("avia_post_slide_query", function($query) { $query['post_status'] = array( 'publish', 'private'); return $query; }, 10);The posts are now displaying in the grid.
Best regards,
Ismael -
AuthorPosts
