Forum Replies Created
-
AuthorPosts
-
Thank you for the proper fix
Seems to be working againHello Rikard,
No that’s not the issue,
the form has conditional blocks, that should be hidden unless a specific option is checked.
Your *fix* breaks this,
As stated before the same exact form worked with enfold before, and still works with other themes.If I switch to the Twenty Nineteen theme the forms show up (besides the enfold shortcodes obviously not working)
It used to work just fine with the previous enfold versions, we need a fix ASAP,
we accept Donations through forms and users are calling us telling us they can’t see the form anymore.Same major issue here,
Using Gravity Forms the forms are invisible on Safari (both iOS and MacOS), no issues with Google Chrome and such- This reply was modified 5 years, 1 month ago by pharefm.
So far it seems like the form to add requests is disabled
Thank you for the excellent support!
Any chance the postslider.php shortcode could be updated in a future update of the Enfold theme
It’s just one extra line, but would open up many possibilities for different scenarios
(it’d be one less custom file for us to keep updating in case Enfold updates the postslider.php with extra features or introduces breaking changes)Regards
I just uncommented the code now, you can check again
the problem is in the blog list view, not the single post view- This reply was modified 5 years, 8 months ago by pharefm.
FTP info
Installed Temporary Login Without Password
Please find the link in the private fieldif(!function_exists('avia_audio_content_filter')) { function avia_audio_content_filter($current_post) { $match_audio = get_post_meta(get_the_ID(), 'audio_file', false); if (!empty($match_audio)) { $current_post['before_content'] = do_shortcode('[audio src="'.$match_audio[0].'"][/audio]'); $current_post['content'] = str_replace($match_audio[0], "", $current_post['content']); } return avia_default_title_filter($current_post); } }
any help?
trying to get it to work with Seriously Simple Podcasting, but no success
all my post with post-format “audio” now show a player, when only one of those posts actually has an audio podcast url in it’s meta field “audio_file”the code I used :
if(!function_exists('avia_audio_content_filter')) { function avia_audio_content_filter($current_post) { $match_audio = get_post_meta(get_the_ID(), 'audio_file', false); if (!empty($match_audio)) { $current_post['before_content'] = do_shortcode('[audio src="'.$match_audio[0].'"][/audio]'); $current_post['content'] = str_replace($match_audio[0], "", $current_post['content']); } return avia_default_title_filter($current_post); } }
I edited includes/helper-post-format.php with this (there might be a more elegant way to do it but it works)
if(!function_exists('avia_audio_content_filter')) { function avia_audio_content_filter($current_post) { preg_match("![\[<]audio[^>]+?[src|source|mp3]=[\"\'](.+?)[\"\'][\]>][\[<]\/audio[\]>]!", $current_post['content'], $match_audio); if(!empty($match_audio)) { $current_post['before_content'] = do_shortcode('[audio src="'.$match_audio[1].'"][/audio]'); $current_post['content'] = str_replace($match_audio[0], "", $current_post['content']); } return avia_default_title_filter($current_post); } }
How would I go about defining this is my child theme, without editing enfold’s theme files,
so that it would survive theme update.
Any chance this will be implemented/fixed in a future release of enfold ?Thank you for the fix
That’s not an option, we’re using a plugin for podcasts that outputs the default playlist element
When can we expect a fix, it used to work just fine beforeI’ve just read that thread, but couldn’t find any solution
Still get the same error with enfold 3.8.4
same here
Edit :
Was using chrome
tried with Firefox and it showed up fine
then tried in an inprivate tab in chrome and it works fine- This reply was modified 9 years, 5 months ago by pharefm.
April 1, 2015 at 4:34 pm in reply to: Widget areas not showing up in correct location after site move #421998nevermind, my problem with the sidebars is due to some bad child-theming on my part it seems.
April 1, 2015 at 2:19 pm in reply to: Widget areas not showing up in correct location after site move #421898This reply has been marked as private.February 12, 2015 at 3:25 pm in reply to: Widget areas not showing up in correct location after site move #395068Same problem here, with my Child theme I pick a specific sidebar when I edit the page, but I end up with only the “displayed everywhere” widgets.
This reply has been marked as private.Is it possible to do something similar with avia-shortcodes ?
Say add a custom avia-shortcode in the template builder based on let’s say “Portfolio Grid” but using a different CPT ?
Right now we’ve edited and created custom php files loading them using
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }
But they don’t benefit from the features you keep adding unless we edit our files manually.
March 14, 2014 at 11:44 am in reply to: Enfold 2.6.1 Child Theme / Theme options not working #237538Nevermind,
I had a custom header.php in my child theme breaking thingsSorry
March 14, 2014 at 10:06 am in reply to: Enfold 2.6.1 Child Theme / Theme options not working #237496I’ve done that already, no success.
Removed custom css modifications again now/
Modified the Header again and clicked “Save Changes”March 13, 2014 at 10:04 am in reply to: Enfold 2.6.1 Child Theme / Theme options not working #236780This reply has been marked as private.Same here,
I made a child theme, header settings are not working.
They work fine on the “enfold” main themehmm,
it’s being used inside base.css :.image-overlay .image-overlay-inside:before{content:”\E869″; font-family: ‘entypo-fontello’; font-size: 18px; font-weight: normal; }
thx Dude
Worked for me, but I didn’t expect the update to trash my french translation.
Good thing I had a backup.
Is there a way to store the translation in the child theme’s folder ? (I guess not)
-
AuthorPosts