Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the inquiry.
There is no option for this by default, but you might be able to accomplish it with a plugin. You’ll need to create two separate pages and then restrict access based on user roles. One of these plugins can help you set up the restrictions
// https://wordpress.org/plugins/restrict-user-access/
// https://wordpress.org/plugins/content-control/Best regards,
IsmaelHi,
Thank you for the update.
Try to use this filter in the functions.php file to display the modification date:
function avf_custom_post_slider_meta_content( $meta_content, $entry, $index, $atts, $meta_array ) { $updated_date = get_the_modified_date( 'F j, Y', $entry->ID ); $meta_array[] = '<div class="updated-date">Updated: ' . esc_html( $updated_date ) . '</div>'; $meta_content = implode( '<div class="slide-meta-del">/</div>', $meta_array ); return $meta_content; } add_filter( 'avf_post_slider_meta_content', 'avf_custom_post_slider_meta_content', 10, 5 );
Best regards,
IsmaelNovember 4, 2024 at 7:20 am in reply to: How Do I Make the Links on the Secondary Menu Get Underlined When Hovered Over? #1470543Hi,
Thank you for the update.
Question: I would like to set up the links on my Secondary Menu to be such that when someone hovers on them, the link word gets underlined (and thus the user can easily see that these ARE links).
You can add this css code to underline the menu items on hover:
#top #header_meta a:hover { text-decoration: underline; }
Best regards,
IsmaelHi,
Thank you for the info.
Maybe you have an idea what the cause of the original problem was? Maybe an insight if the above mentioned debug log error with action_scheduler_run_queue is related?
Glad to know that the issue has been resolved. Unfortunately, we haven’t encountered this same issue before, so we’re not sure what could have caused it, and it might be unique to your installation. Please let us know if the issue occurs again so we can check it.
Best regards,
IsmaelNovember 4, 2024 at 7:13 am in reply to: Error in Sitelinks Searchbox definition (in ‘potentialAction.target’) #1470540Hey ibuzaev,
Thank you for the inquiry.
We are not sure what caused this issue, but according to the documentation, this feature will be removed in the future, making it impossible to display a dedicated search box for any site in Google search results.
// https://developers.google.com/search/docs/appearance/structured-data/sitelinks-searchbox
// https://developers.google.com/search/blog/2024/10/sitelinks-search-boxBest regards,
IsmaelHey gatehealing,
Thank you for the inquiry.
Which blog layout did you select? Please provide the link to the page so we can check it.
Best regards,
IsmaelHi,
Thank you for the inquiry.
is there a standard size you’d recommend for images to stretch the image container for the Get in Touch portion?
The recommended maximum image width for most sites is typically 1920px, ideal for standard displays. For a 3/5 cell, you can use images based on this size, but they may need to be resized depending on the intended use. The demo image is 1200x1800px, but you can use a smaller image, as it will automatically resize to fit the cell container.
Best regards,
IsmaelHi,
Thank you for the update.
We were able to publish the page “random” without any issues. We also created another test page (see private field).
Have you tried using a different device or browser?
Best regards,
IsmaelNovember 4, 2024 at 5:37 am in reply to: Upcoming Events shortcode not showing events that have a valid date range #1470535Hey Vada,
Thank you for the inquiry.
Please note that the Upcoming Event element will only display events that are not yet ongoing or have not yet started. It will also not display reccurrings events. If the start date of an event is prior to the current date, it will be excluded, and other upcoming events will be shown instead. However, you can still use the filter above if it works for your case.
Best regards,
IsmaelHey reqonsult,
Thank you for the inquiry.
Have you tried adding another Form Element: Checkbox at the very end or as the last field of the contact form? You can set the Form Element Validation to Is not empty to make sure the form is not submitted when this box is not checked.
Best regards,
IsmaelHi,
Thank you for the update.
You can try @Guenni007’s suggestion above.
p, li { text-align: justify; } .modern-centered .av-subheading p { text-align: center; }
Best regards,
IsmaelHi,
, the green button in desktop, i
The button is still green when we check it in mobile device emulation. Could you provide a screenshot? You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot.
Best regards,
IsmaelHi,
Thank you for the update.
On my other site, I would like to fix the image issue on the category page too
You can use the same filter on the other site; just adjust the values as needed.
Best regards,
IsmaelHey blizzmarketing,
Thank you for the inquiry.
There is no option for this out of the box, but you can try one of the following plugins.
// https://wordpress.org/plugins/all-in-one-wp-sticky-anything/
// https://wordpress.org/plugins/sticky-on-scroll/Best regards,
IsmaelHi,
I noticed it would pull the number 3 when I queries using dynamic data for the “av_acf_slideshow_ids” which happens to be the number of slides I have assigned to that records repeater field.
Did you use the IDs of the images in an array as the value for the av_acf_slideshow_ids field? When you try to debug the code, what is the value of
$slide_ids
? This should be an array containing the IDs of the images that you’d like to use in the slider.Best regards,
IsmaelHey!
We have made the necessary adjustment to the avia_small_fixes function, and this should be included in the next patch.
Cheers!
IsmaelHi,
Thank you for the update.
You can add this css code to hide the container on mobile view:
@media only screen and (max-width: 989px) { /* Add your Mobile Styles here */ .av-sidebar-header-text { display: none; } }
Best regards,
IsmaelNovember 1, 2024 at 5:55 am in reply to: Comment form for an article on mobile is not displaying correctly #1470395Hi,
Thank you for the update.
Concerning the subject. On tiny the labels are displayed on 2 lines and the warning is half hidden under the textarea.
We can’t find any posts with the comment section. Please provide a direct link.
Another small thing, the comment form and the share buttons are both intended to be displayed at the end of one article but their titles do not have the same font size. H3 to Leave a comment and H5 to Share this post.
Try to modify the enfold\comments.php file and look for this code around line 180:
$default_heading = 'h3'; $args = array( 'heading' => $default_heading, 'extra_class' => '' );
Best regards,
IsmaelHi,
Thank you for following up.
Can the hamburger menu also be displayed on the right side
You can add this css code to move the burger menu to the right.
.responsive #top .av-main-nav .menu-item-avia-special { float: right; }
Make sure to place this modification inside this css media query:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ }
Best regards,
IsmaelHi,
Thank you for the update.
Maybe it is only for actual Portfolio items, which I don’t have?
Yes, you have to create Portfolio Items for the Portfolio Grid element.
So a combination of Blog Posts and Magazine will do it.
Alright, let us know if you need more assistance with this. We’ll keep the thread open.
Best regards,
IsmaelHi,
Thank you for the links.
We can’t access the editor. Please provide the login details in the private field. It doesn’t look like the page is using the Advanced Layout Builder based on the html.
Best regards,
IsmaelHi,
Thank you for the update.
We are not really seeing the issue in the page. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. This might help: https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Best regards,
IsmaelHi,
UPDATE: You can try applying a custom css class name to the element. Please check this link: https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Best regards,
IsmaelHi,
Thank you for the update.
How do I change it for just this page?
You can edit the Icon List element in the page and configure the options as suggested above.
Best regards,
IsmaelHi,
No problem! Glad @Guenni007 helped. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the screenshot.
It doesn’t appear that way on our end. Try viewing the site in incognito mode or using a different browser. Please check the screenshot in the private field.
Best regards,
IsmaelHi,
Good to know! Let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the inquiry.
So I sent them the error log and I’m waiting for their reply.
What does the error log show? Please temporarily disable the plugin so you can work on the pages, and post the error using Pastebin so we can review it on our end.
Best regards,
IsmaelNovember 1, 2024 at 4:56 am in reply to: Product Gallery Images now square and cropped on new images? #1470384Hi,
Great! Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
Ismael -
AuthorPosts