Forum Replies Created
-
AuthorPosts
-
Hi Phil!
Does it get fixed if you disable Jetpack? also, do you have the latest version of Enfold (3.0.8)?
Regards,
JosueShould work now, please review your site.
Regards,
JosueHi!
The best solution in this case would be to create new Custom Post Types, you can do it via code or using a handy plugin like Types (you’d also need to create custom Taxonomies for each Post Type).
Once you’ve set-up the new Post Types, add the following lines to your theme / child theme functions.php:
add_theme_support('add_avia_builder_post_type_option'); add_theme_support('avia_template_builder_custom_post_type_grid');Now when you drag a Portfolio element you’ll be able to select the new Post Types / Taxonomies.
Best regards,
JosueHola Belema,
Hay ciertas funcionalidades que están pensadas para la vista en desktop solamente, una de ellas es la del encogimiento del header al hacer scroll, sin embargo hay formas de hacer que el comportamiento sea el mismo, tendrías que abrir js/avia.js y buscar esta linea (1449):
if(shrinking && !isMobile)Cambiala por:
if(shrinking)Saludos,
JosueDe nada, lo cierto es que me excedí un poquito con lo que normalmente ofrecemos como soporte pero me parece que valió la pena porque es una buena causa :)
Glad it worked, be aware though, that this file is updated when new features and elements are added to the theme so it is recommended to re-do this process, check for the version.txt included in each update, most of the times you’ll only need to do it on big patches like the upcoming 3.1.
Best regards,
JosueYes, the conflict is between qTranslate and Yoast, try the following:
http://kb.yoast.com/article/52-wordpress-seo-qtranslateIf that doesn’t work please try contacting their plugin support as i’m out of ideas at this point:
https://wordpress.org/support/plugin/wordpress-seo
https://wordpress.org/support/plugin/qtranslateBest regards,
JosueALB le decimos al Editor Avanzado de Plantillas (Advanced Layout Builder).
Saludos,
JosueOh, no, that’s theme debug. As i said, the problem is not theme related so you need to enable WordPress debug, basically it’s about opening the wp-config.php file and changing this line:
define('WP_DEBUG', false);To:
define('WP_DEBUG', true);Regards,
JosueWell, that won’t work that way. You need to put the whole modified shortcodes.js there (in the child js folder).
Hi!
The problem is not theme related, try activating Twenty Fourteen and you’ll see the same result. Are you sure you activated debug mode? looking at the logs is the only way to get to the culprit.
Regards,
JosueHm, try with only the code i passed you here, i’ve tested that on my local install and it worked fine.
Regards,
JosueHi Alison!
It works now, i need two more things:
- A WordPress account.
- The enfold.zip somewhere uploaded in your server.
Regards,
JosueHi!
I’d suggest using the available Enfold filter, i managed to get it working by adding the following code here (via a plugin that lets you store custom functions like this):
add_filter( 'avf_google_heading_font', 'avia_add_custom_font'); add_filter( 'avf_google_content_font', 'avia_add_custom_font'); function avia_add_custom_font($fonts) { $fonts['Gloria Hallelujah'] = 'Gloria Hallelujah'; $fonts['Audiowide'] = 'Audiowide'; return $fonts; }You can now select those fonts in either General Styling > Fonts or Advanced Styling.
Best regards,
JosueHey!
Ok, copy the modified shortcodes.js to your_child_theme_folder/js/shortcodes.js and add this at the very end of your child theme functions.php file:
function change_aviajs() { wp_dequeue_script( 'avia-shortcodes' ); wp_enqueue_script( 'avia-shortcodes-child', get_stylesheet_directory_uri().'/js/shortcodes.js', array('jquery'), 3, true ); } add_action( 'wp_enqueue_scripts', 'change_aviajs', 100 );Cheers!
JosueHey!
I checked your website and the logo no longer overlaps with the menu – http://screencast.com/t/p7tvQBvSnI
Cheers!
JosueHey!
1. Add this line to theme / child theme functions.php:
add_theme_support('avia_template_builder_custom_css');2. Set the class of “one-line” to the one line buttons.
3. Add this to Quick CSS:.one-line .avia-button{ line-height: 30px; }Cheers!
JosueHi!
So, if I want to do major changes in the styling of the theme, and I don’t want to amend the parent theme’s custom.css can I just add all css codes to the child theme’s style.css instead?
Correct, child theme style.css is the most reliable option to store custom CSS codes.
Also, if I use the theme options from within the child theme, what files will be affected? Will the files of the parent’s theme overwritten or will everything be added to the child theme’s files?
No theme or child theme files will be affected, your settings are saved in the database and in a dynamic stylesheet file located in wp-content/uploads/dynamic_avia.
Cheers!
JosueFebruary 19, 2015 at 10:22 pm in reply to: Troubleshooting with Icons after update to WP4.1 and latest Enfold revision #399297Hi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueI’m not seeing the code applied in the dynamic stylesheet (Quick CSS), also, do not copy the code right from the mail notification but from the forum reply (some characters don’t get copied correctly).
Cheers!
JosueYou are welcome, glad to help :)
Regards,
JosueFebruary 19, 2015 at 8:48 pm in reply to: How to track only validated form submissions with Google Analytics goals? #399237Hey Ralph!
That’s actually possible with the Enfold form but requires you to edit js/shortcodes.js, just put the GA code below line 2869:
send_ajax_form(); // ga code hereIt will affect all forms though, if you are using multiple forms i’d recommend using the CF7-approach instead, let me know if you need help applying the Enfold form styles to it.
Regards,
JosuePretty neat result, thanks for sharing your solution :)
Regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueHi!
I could see the problem and i wish to fix it but i don’t know German, i’ll explain you how to do it:
1. Go to Werkzeuge > Lokalisierung > Themes > “ibis” and click Bearbeiten to edit the German translation.
2. Look for the strings the needs to get fixed – http://screencast.com/t/ZDXcELDcxmfi
3. Correct them.
4. When you’re done, click this button to re-generate the .mo file – http://screencast.com/t/bfdVt9ptmdI’ve already reported this issue and hopefully it will be resolved in the next patch.
Regards,
JosueYa, logre hacer que salga el contenido Ajax + galeria en la vista individual:
http://www.arcasevilla.es/portfolio-item/test-2/Sin embargo, para que esto funcione se tienen que cumplir dos requisitos:
- No exista contenido normal
- Que el ALB este desactivado
Saludos,
JosueHi!
@cesarel, latest version of Enfold is 3.0.8, update it and check if it gets fixed, if it doesn’t hand me a WP admin account in a private reply.
@davidlesage, your issue is different, please create another topic.Best regards,
JosueHi!
Are you using Enfold Advanced Layout Builder? also, can you share us the child functions.php you are using?
P.S. I’d suggest updating WordPress to 4.1 too.
Regards,
JosueHey Alex!
I’m unable to reproduce that on your install, make sure to refresh a few times to clear up your browser cache.
Cheers!
Josue -
AuthorPosts
