Forum Replies Created
-
AuthorPosts
-
Hey Micke!
Open up /enfold/framework/php/class-form-generator.php and on line 625 you should see this.
//hook to stop execution here and do something different with the data $proceed = apply_filters('avf_form_send', true, $new_post, $this->form_params);The “avf_form_send” hook could probably work here.
Cheers!
ElliottHey Special K!
I sent you a test email. Double check your email address for typos and check your spam folder also.
If the emails are not being received then this is usually a problem with your server so contact your hosting provider and let them know about this.
If they have an SMTP server then you can use this plugin, https://wordpress.org/plugins/wp-mail-smtp/, to switch WordPress from using PHP mail to SMTP mail.
Regards,
ElliottFebruary 2, 2015 at 5:09 pm in reply to: Removed featured image placeholder – want to bring blog title up #389429Hi Duslan82!
Try this instead.
.single .blog-meta { display: none !important; }Best regards,
ElliottHi Mario!
You can create a custom link in your menu and then add a
?iframe=trueto the end of the URL like so.http://www.yoursite.com/somepage?iframe=trueThe same thing for links in your content.
Best regards,
ElliottHey user877!
Try turning on WordPress debugging, http://codex.wordpress.org/Debugging_in_WordPress, and then deactivate all plugins and try again.
Send us a WordPress login and we’ll take a look.
Best regards,
ElliottHi ksakkos!
Can you send us a link to your page? You can set your reply as private if you wish.
What browser are you using?
Best regards,
ElliottHey Morticka!
Try adding this to your custom CSS.
.av-language-switch-item { display: none !important; }Regards,
ElliottHey lobstahhhhhhh!
For a single page? Send us a link to your page so we can check it’s ID and see what type of layout your using.
Best regards,
ElliottHi TravisKempers!
Try adding this to your custom CSS.
.avia-caption-title { color: red !important; } .avia-caption-content, .avia-caption-content p { color: blue !important; }Regards,
ElliottFebruary 1, 2015 at 5:32 pm in reply to: Map and Images Missing only Within Chrome – Okay in Firefox and IE #389037Hey davevi!
I’m seeing them on my end. Try clearing your browser cache and make sure Chrome is updated.
The latest version of Enfold is 3.0.8 but your using 3.0.6 so be sure to update. Also try deactivating any Chrome extensions you might have installed.
Regards,
ElliottHey KK!
When you set the image to the color section background then you’ll need to set the background repeat option to the “Stretch to fit” setting. You can either remove the blue background color from the color section or change the bottom border styling to no style to remove the arrow.
Best regards,
ElliottHi isquaremedia!
Try completely deleting Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest. That should take care of the error your getting.
Best regards,
ElliottHi courtneysoliday!
The date should already be displayed, http://kriesi.at/themes/enfold/blog/blog-grid/.
For the category open up /enfold/config-templatebuilder/avia-shortcodes/postslider.php and find line 385.
$markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));And add this above it.
$taxonomies = get_object_taxonomies(get_post_type($the_id)); $cats = ''; $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id); if(!empty($taxonomies)) { foreach($taxonomies as $taxonomy) { if(!in_array($taxonomy, $excluded_taxonomies)) { $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' '; } } } if(!empty($cats)) { $output.= '<span class="blog-categories minor-meta">'.__('in','avia_framework')." "; $output.= $cats; $output.= '</span><span class="text-sep text-sep-cat">/</span>'; }Best regards,
ElliottFebruary 1, 2015 at 5:11 pm in reply to: Add color to top header transparent and fix gap between logo and header #389031Hi glozemedia!
I found this in your custom CSS.
#top #header_meta { background: none repeat scroll 0 0 rgba(225, 225, 225, 0.9) !important; }So I assume you figured it out.
Let us know if you have any other questions.
Cheers!
ElliottHi Brandon!
Have you contacted the plugin authors?
You can send us a link to your page and we’ll take a look.
Cheers!
ElliottHi serg1o!
The WordPress gallery shortcode does not set titles on the link or images but we can change our magnific script to pick up the alt text instead.
Open up /enfold/js/avia.js and on line 847 you should see this.
if(!title) title = item.el.find('img').attr('title');And this on the next line.
if(!title) title = item.el.find('img').attr('alt');And then make sure to set the alt text of your images as you select them for the gallery.
Cheers!
ElliottHey mcg!
Open up /enfold/includes/loop-index.php and move line 134.
echo $title;To line 186 so it displays right above this.
echo '</header>';Best regards,
ElliottHi Bernd!
Would you like to try reducing the font size? Try adding this to your custom CSS.
@media only screen and (max-width: 400px) { .av-inherit-size .av-special-heading-tag { font-size: 20px !important; } }Regards,
ElliottHey Ken!
Try dragging a codeblock element to your page and add this inside.
<style type = "text/css"> #wrap_all { max-width: 90% !important; margin: 0px auto !important; } html { background: url("URL to your image") #222222 !important; } </style>Cheers!
ElliottHi mtorzi94!
The /impressum/ is a page correct? Your feed URL should be yoursite.com/feed. I viewed it in Firefox and it seems to be working though I did not see any posts. Have you created any posts yet?
You can read up more about it here, http://codex.wordpress.org/WordPress_Feeds.
Cheers!
ElliottJanuary 31, 2015 at 6:50 pm in reply to: change font style of full width slider image caption #388809Hi potentialindia!
Add this to your custom CSS.
.slideshow_caption { width: 80% !important; } .slideshow_caption h2 { font-family: verdana !important; }Cheers!
ElliottHey sjidesign!
When you say “speech bubble styling” are you referring to our compact testimonial slider styling as seen on this page? http://kriesi.at/themes/enfold/shortcodes/testimonials/
If not then take a screenshot and highlight exactly what your trying to do so we can get a better idea.
Best regards,
ElliottJanuary 31, 2015 at 6:37 pm in reply to: Make additional elements in header shrink like logo #388803Hi raustyle!
Add this to your custom CSS.
.header-scrolled .header, .header-scrolled .header img { max-height: 50px !important; }And you’ll want to set the width to auto probably.
Cheers!
ElliottHey Michae1!
1. Add this to your custom CSS.
.avia-menu > ul > li > a { position: relative; top: -30px !important; }2. You can disable the header shrinking feature in Dashboard > Enfold > Header > Header Behaviour.
Regards,
ElliottHey Khanh Hong!
Your getting a javascript error. Let’s try the following.
1. Deactivate all plugins.
2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.
3. Activate just Enfold instead of your child theme.
Regards,
ElliottHi JPOsteen!
We’ll have a fix in the next update but in the meantime try adding this to your custom CSS.
#wrap_all { position: relative !important; }Cheers!
ElliottHey marinamcdonagh!
If deactivating all plugins does not help then send us a WordPress login and we’ll take a look.
Best regards,
ElliottHey kenwae!
Our demo seems to be doing good, https://www.google.com/webmasters/tools/mobile-friendly/?url=http%3A%2F%2Fkriesi.at%2Fthemes%2Fenfold%2F.
Can you copy / paste the errors exactly as they appear in your test results? Also send us a link to your page.
Cheers!
ElliottJanuary 30, 2015 at 11:29 pm in reply to: Google Description is Initializing… stage: 500×375 file … #388604Hey!
I’m not sure what it could be. Send us a WordPress login so I can see the exact settings and URLs your using and I’ll try reproducing it on my personal site.
Best regards,
Elliott-
This reply was modified 10 years, 11 months ago by
Elliott.
Hey!
Hmm, yes it looks like it’s going to take too much work to get it compatible. I was thinking you might be able to get it working in our avia layout editor with the Qtranslate quick tags.
<!--:en-->Hello<!--:--><!--:es-->Hola<!--:-->Or..
[:en]test[:tr]deneme prints as it is.But when I installed the plugin on my XAMPP setup it was also causing javascript errors so I don’t think that is going to be feasible.
Cheers!
Elliott -
This reply was modified 10 years, 11 months ago by
-
AuthorPosts
