Forum Replies Created
-
AuthorPosts
-
Thanks Rikard.
That plugin worked with a new API token.Perfect!! Worked like a charm.
Thanks for the quick response.
Resolved.Think I found the solution.
Here – on GitHubfunction custom_avf_post_css_create_file( $create ) { return false; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
Not ideal, but bypasses issues with post.css
Thanks.June 17, 2021 at 5:38 pm in reply to: Page scrolls to Google Maps automatically when Text-marker is shown #1306228Having same issue on several sites. Subscribing to hear about solution, when available.
Thanks.Thanks Ismael,
Yea, I’ve tried these however, I’m trying to set it for existing role of Author (actually disable for Author role). It doesn’t seem remove those capabilities at all. My main issue is when I use “portfolio” or “portfolio_item” it doesn’t work. And that plugin doesn’t even see the Portfolio as a post type to control capabilities for.I wonder if it could be that capabilities are not set on the post type when registered. There for I can’t set them per user.
Capabilities Mapping, As explainer here.
http://justintadlock.com/archives/2010/07/10/meta-capabilities-for-custom-post-typesWonder if it is possible to map those capabilities for the portfolio content type in a function in the child theme, without hacking the parent theme?
Thanks for your help.Here is the fix, if you can’t wait for theme update.
https://kriesi.at/support/topic/alb-bug-when-slider-revolution-active-space-character-does-not-work-in-fields/Looking forward to seeing it implemented in next update.
Thanks.Thanks for looking at that Yigit.
I think I found the issue. If the image is 100px or less in height, than the arrow doesn’t appear on hover (can’t see it).
I have a test site with no plugins and have recreated the issue here.http://enfold.josh-web.com/about/
Tested in Chrome and Firefox.
Maybe by design?
Thanks for your help.Logos just under lead-in paragraph, and mid-way logos in the content slider element.
Thanks Rikard. I just switched to Enfold Captcha (Math Question).
I’m having the same issue and guess I’m confused.
I thought the V2 was used as a fallback for V3?So I have an API key for both V2 and V3 set in Theme options (verified). Then on the form, I’ve selected Recaptcha V3 with V2 fallback. Is that correct?
I get that same error when trying to submit.
“Sorry, but the session time for this page has expired. Please reload the page.”Thanks for any help you can provide.
Works Great!
Thank you.That temporary Style Sheet solutions the Michael mentioned works good, until they get it updated.
Seen HereJust make sure to “Add to your Quick CSS in Enfold Child Theme Options > General Styling”
Awesome!
Thanks Michael.Sorry for the dupe post. I searched for an answer and didn’t find that.
Hopefully be resolved in the next version.I applaud Enfold for integrating TheEventsCalendar, but it seems the CSS is a bit lacking compared to other Enfold design. Specially with the Photo View.
Looking closer at the latest version of Enfold, the function is nowif( ! current_theme_supports( 'deactivate_tribe_events_calendar' ) ) { require_once( 'config-events-calendar/config.php' ); //compatibility with the Events Calendar plugin }
So instead of messing with the parent theme. I just added this to my child them functions.php
add_theme_support( 'deactivate_tribe_events_calendar' );
That now allows me to choose the style under Events->Settings.
In addition to making my own style sheet changes.However, it would be great if there was something in the Theme Options to alter this. Or possibly even edit The Event Calendar styles under the Advanced Styles panel. Lastly, maybe even revisit the CSS for the built in Enfold styles for the calendar.
Thanks for the great theme!!
Thanks Nikko, That worked great.
But I still had to implement in v4.6.2
Maybe a feature request would be to add the ability to choose if the Video loops and/or autostarts in the Video Element settings. So this isn’t a site wide setting.I would add this to the feature request forum, but that still isn’t accepting requests.
Thanks again.
- This reply was modified 5 years, 1 month ago by jberg1.
My solution was to combine DavidKFry’s and Nikko’s solutions.
Put your columns in a Color Section. Give that Color Section a class of .flip-mobile.
Set first column in each row to be “Equal Height”. Then add this css.@media only screen and (max-width: 767px) { .flip-mobile .flex_column_table { display:flex !important; flex-direction:column-reverse; } .flip-mobile .flex_column_table .flex_column { flex:0 0 auto; } }
Be sure to use a separate Color Section for each group you want to flip. If you do your entire page in one Color Section it will show the bottom at the top.
I would like to see enfold use Flex for those equal columns, instead of the display: table and display: table-cell. But I know that wasn’t always supported.
Hope it helps others.Hmm. that came up with some other issues.
1. It only runs my custom filter/function on the most recent post (in loop and on single post), the others use default behavior.
2. It shows the title twice and I get a weird'>
in between the duplicated titles.Trying to troubleshoot code, but I’m just copying and pasting the exact code from avia to my custom function with the same modifications and remove/add filter.
I’ll keep diggings.
Any thoughts?Thanks again for your help.
Thanks Ismael,
Unfortunately, that didn’t work. I removed line 269
$current_post['title'] = $link;
but, there was already
$current_post['title'] = $link[0];
on line 279.This is what I ended up doing. Changing line 311 from
$current_post['title'] = "<{$heading} class='post-title entry-title {$css}' ".avia_markup_helper(array('context' =>'entry_title','echo'=>false)).">".$current_post['title']."</{$heading}>";
to this
$current_post['title'] = "<$heading} class='post-title entry-title {$css}' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false))."><a href='$link' rel='bookmark' title='".the_title_attribute('echo=0')."' $markup>".get_the_title()."</a></{$heading}>";
But I guess I’m wondering about overwriting when theme updates.
Can helper-post-format.php be overridden in child theme?Thanks for your help.
dev.cholonconcepts.com/news-events/Thanks Mike, I figured that might be the issue. Using a legacy GoDaddy cPanel account that tops out at PHP 5.6.
I’ll use the file you linked until I remedy that PHP version.Thanks again.
Resolved.March 9, 2018 at 4:21 am in reply to: Can you please update Enfold with the latest version of LayerSlider 6.7.1? #924244Doesn’t look like Enfold 4.2.6 update came with LayerSlider 6.7.1. Still using 6.6.8.
Will it be part of the next update? Another update coming the 3rd week of March?No big deal, just curious.
Thanks for your help.February 18, 2018 at 7:53 am in reply to: Add Full Width Elements to Blog Page Layout and Keep the Sidebar #913806Ah, great idea! Keep it simple.
Thanks. -
AuthorPosts