Forum Replies Created
-
AuthorPosts
-
Hi!
Try putting a Code Block element before each instructor section with the following (change respectively):
<a name="anchor"></a>Cheers!
JosueHi,
Can you post the link to your website please?
Regards,
JosueFebruary 9, 2015 at 1:50 am in reply to: Social Icons turn to boxes after failed @font-family font change. #392812You are welcome, always glad to help :)
Regards,
JosueHola,
Si, es posible implementarlo pero como te decía requiere un poco de trabajo, lo que habría que editar seria /enfold/config-templatebuilder/avia-shortcodes/portfolio.php, alrededor de las lineas 723-725:
$output .= "<div class='entry-content-wrapper entry-content' ".avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'id'=>$id, 'custom_markup'=>$this->atts['custom_markup'])).">"; $output .= $content; $output .= "AQUI IRIAN LOS SHARE LINKS, FIJATE QUE TIENES ACCESO AL ID DEL POST ($id)"; $output .= "</div>";Inicialmente intente poner la función nativa de share links de Enfold (avia_social_share_links) allí pero no funciono debido a que esta aun no soporta pasarle un $id especifico como parámetro, ósea se compartía el contenido de la pagina donde esta el portfolio y no del single portfolio abierto en ese momento.
Dicho esto, lo que te recomendaría es investigar por una opción de terceros (un plugin de share links), uno que te permita invocarlo via función PHP (o shortcode), pero sobre todo que te permita pasarle el $id del post a compartir.
Saludos
JosueHi!
Yes it’s definitely possible, add this to theme / child theme functions.php:
add_filter( 'avf_google_heading_font', 'add_custom_font_to_styling_options'); add_filter( 'avf_google_content_font', 'add_custom_font_to_styling_options'); function add_custom_font_to_styling_options($fonts) { $fonts['Proxima Nova'] = 'Proxima Nova'; return $fonts; }Cheers!
JosueYou are welcome, always glad to help :)
Regards,
JosueHi Piraatti!
There is no log in the Enfold built-in form and yes you could switch to CF7 if you want to log entries, you can do it with this extension:
https://wordpress.org/plugins/contact-form-7-to-database-extension/Regards,
JosueOk, let’s try another method:
1. Install and activate this plugin – https://wordpress.org/plugins/codestyling-localization/
2. Go to Tools > Localisation > Theme > Enfold and click “Modify” to edit the German translation
3. Look for the “Ihre Nachricht:” string and change it – http://screencast.com/t/DRFOn6a67Oq
4. Click this button – http://screencast.com/t/5pcPOMlF0KJRegards,
JosueHi!
You can scale a layer image in LayerSlider (http://screencast.com/t/81BrkKM4Qn), however if you what you want is crop it you’d need to do that before uploading the image or via Media > -open image to edit- > Edit Image > Crop (http://screencast.com/t/Isz83hyjKbN).
Regards,
JosueHey!
That feature is not available at the moment, if you really need it you would have to contact a developer from Envato Studio or Codeable
Also, feel free to request it here as a new feature.
Best regards,
JosueHey!
Unfortunately is not possible tu turn the WC tabs full width, they are constrained by the main container.
Best regards,
JosueHi!
Add this:
.avia-gallery-thumb a:hover { opacity: 1 !important; }Regards,
JosueHey!
Have you tried changing the default Thumbnail size in Settings > Media?
Best regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHey!
Change Ismael’s first code to this:
function avf_form_autorespondermessage_mod($message) { $message = "<br/><br/><br/><strong>".__('CHANGET THIS LINE:','avia_framework')." </strong><br/><br/>"; return $message; } add_filter('avf_form_autorespondermessage', 'avf_form_autorespondermessage_mod', 10, 1);Cheers!
JosueHey!
Yes, that works for accessing the WordPress dashboard, but we’d need to FTP access in order to debug this problem.
Best regards,
JosueHey!
Ok check it now, this is the setting that controls the color of main menus – http://screencast.com/t/3wQxJrVd2yw
Best regards,
JosueHi!
You are still seeing it in English because it’s not translated yet.
WPML won’t translate the content automatically, it allows you to have a different version of your content (pages/posts/etc) for each language.
Best regards,
JosueNo, unfortunately that’s not possible right now, The Advanced Layout Builder is meant to be used as a Layout Builder, so it needs to work on an empty canvas. Alternatively you can use the Magic Wand tool to generate some of the shortcodes ALB has without entering ALB.
Regards,
JosueFebruary 7, 2015 at 2:51 am in reply to: Social Toolbar – Twitter – not using "pretty" permalink #392381You are welcome, glad to help :)
Cheers!
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi!
You need to set an
og:imagetag so Facebook can fetch that as the thumbnail image, you can do that with a plugin like:
https://wordpress.org/plugins/wp-open-graph/Best regards,
JosueFebruary 6, 2015 at 11:16 pm in reply to: Social Toolbar – Twitter – not using "pretty" permalink #392337Hey Jennifer!
It doesn’t because of the Twitter character limit, if you want to change it you’d need to edit
/includes/helper-social-media.phpand change line 147:'twitter' => array("encode"=>true, "encode_urls"=>false, "pattern" => "https://twitter.com/share?text=[title]&url=[shortlink]"),To:
'twitter' => array("encode"=>true, "encode_urls"=>false, "pattern" => "https://twitter.com/share?text=[title]&url=[permalink]"),To have this mod on a child theme you can copy the whole
avia_social_share_linksclass to your child functions.php.Regards,
JosueHi Arjan de Wit!
Yes, you can just remove the $post_type conditional so the checkbox appear in any post type:
if($post_type == "post") { ... }However that will just attach a metadata (
_avia_hide_featured_image) to the post type, you’d then need to use it in the single post type template, like we do it in /includes/loop-index.php:if(is_single($initial_id) && get_post_meta( $current_post['the_id'], '_avia_hide_featured_image', true ) ) $current_post['slider'] = "";Best regards,
JosueFebruary 6, 2015 at 11:10 pm in reply to: Contact form – Send email to user filling the form #392333Hi,
We’d need to run some tests in order to diagnose the problem, can you please create us a WordPress administrator account on the site in question? post it here as a private reply.
Regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueHey!
Have you set the color for transparent header menu links in Header > Transparency Options too?
Cheers!
JosueHey Brandon!
You can use a WordPress hook for that, try adding this at the very end of your theme / child theme functions.php file:
function custom_func() { ?> <script type=”application/ld+json”> { “@context” : “http://schema.org”, “@type” : “Organization”, “name” : “Your Organization Name”, “url” : “http://www.your-site.com”, “sameAs” : [ “http://www.facebook.com/your-profile”, “http://www.twitter.com/yourProfile”, “http://plus.google.com/your_profile”] } </script> <?php } add_action('wp_footer', 'custom_func');Cheers!
JosueHi!
Are you referring to the mobile menu? if so, try adding this code to Quick CSS to change the default right-to-left opening animation:
#mobile-advanced{ right: 0; top: -100%; border-color: #242424; -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); transform: scale(1); -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; transition: all 0.3s ease; -webkit-transform-origin: 0% 0%; -moz-transform-origin: 0% 0%; -ms-transform-origin: 0% 0%; transform-origin: 0% 0%; } .avia_transform3d #mobile-advanced{ -webkit-transform: scale3d(1); -moz-transform: scale3d(1); transform: scale3d(1); } .show_mobile_menu #mobile-advanced{ -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); transform: scale(1); -webkit-transform: translate(0, 100%); -moz-transform: translate(0, 100%); -ms-transform: translate(0, 100%); transform: translate(0, 100%); } .avia_transform3d .show_mobile_menu #mobile-advanced{ -webkit-transform: scale3d(1); -moz-transform: scale3d(1); transform: scale3d(1); -webkit-transform: translate3d(0, 100%, 0); -moz-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); }Cheers!
Josue -
AuthorPosts
