Forum Replies Created
-
AuthorPosts
-
Hey!
The first dropbox link you posted is returning a 404 error.
Best regards,
JosueMarch 17, 2016 at 12:38 pm in reply to: Can t upload the images – HTTP error – Godaddy says it is due to the theme #599560Hey!
1. Please update the theme to the latest version (3.4.7).
2. Try disabling all third-party plugins.
Best regards,
JosueHi!
Ok, i’ve added an image to the Services submenu, look at the backend.
Regards,
JosueHey Adrian!
The login you posted is not working.
Best regards,
JosueHey!
Can you specify what exactly is broken? screenshots of the issues would help.
Cheers!
JosueHi!
If no footer widgets are set, placeholders will shown instead (that’s happening in the third footer widget area).
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueCheck it now, i modified archive.php, this part:
$atts = array( 'type' => 'grid', 'items' => get_option('posts_per_page'), 'columns' => 3, 'class' => 'avia-builder-el-no-sibling', 'paginate' => 'yes', 'use_main_query_pagination' => 'yes', 'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types() ) );To:
$atts = array( 'type' => 'grid', 'items' => get_option('posts_per_page'), 'columns' => 3, 'contents' => 'excerpt_read_more', 'class' => 'avia-builder-el-no-sibling', 'paginate' => 'yes', 'use_main_query_pagination' => 'yes', 'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types() ) );You can move archive.php to your child theme if you want this modification to survive updates.
You can still link anchors in a button shortcode:
[av_button label='Click me' link='manually,#anchor' link_target='' size='small' position='center']You are welcome, glad to help :)
Regards,
JosueTry passing
$entry->IDas the second parameter in get_field:$output .= "<div>".get_field("geslacht1", $entry->ID)."</div>";Ok, lo que sucede es que hay un codigo en Quick CSS que te pase para borrar todos los
br(por el problema inicial), es algo como:#footer br{ display: none; }Borrarlo y luego, quita los
briniciales que tienes al inicio de los widgets – http://screencast.com/t/WL7gtJptSVG can be weird sometimes but glad it works :)
Regards,
JosueMarch 15, 2016 at 12:30 pm in reply to: Enter string in Text Block without having to escape special characters #598336Hi!
This is more of a WordPress TinyMCE thing, one thing you can try is using a shortcode approach (functions.php):
function custom_shortcode_func() { ob_start(); ?> PUT YOUR CODE HERE <?php $output = ob_get_clean(); return $output; } add_shortcode('my_shortcode', 'custom_shortcode_func');Then you’d put [my_shortcode].
Best regards,
JosueHola,
Puedes pasarme una captura de como estas definiendo el widget en el backend?
Saludos,
JosueHi!
I tested it on my Android phone (Chrome on Android 6.0) and it worked fine, i sent a test from it.
Cheers!
JosueAlso in /config-templatebuilder/avia-shortcodes/google_maps.php look for:
$image = wp_get_attachment_image_src($shortcode['attr']['marker'], 'thumbnail');Change it to:
$image = wp_get_attachment_image_src($shortcode['attr']['marker'], 'full');-
This reply was modified 9 years, 7 months ago by
Josue.
You are welcome, glad we could help :)
Regards,
JosueAdd this:
.logo img { height: 70px; }– First you’d need to modify the markup, this is done in 136-147 of /config-templatebuilder/avia-shortcodes/helper-masonry.php, there’s a loop that that goes through all the terms and print them flat, that would need to be re-factored so it prints them in a hierarchical order.
– Once you have these terms output in a hierarchical way you’d need to hide the children by default (CSS) and then create a custom script (JS) that makes the children of each term appears when clicked (and at the same time maintain its default filter functionalities).
I’m not sure if it would be worth the effort in the end, do you have any examples of what you’re trying to achieve? as far as i know filters options are normally presented flat.
Ok, can you set it as the logo in the actual site so we can try to debug it?
It is working, once you made the change in the file you need to re-select the new option in the Page.
Hey!
It seems the culprit is the use of
HTTP_RAW_POST_DATA, you can do two things, rollback to a version of PHP lesser than 5.6 or set ‘always_populate_raw_post_data’ to ‘-1’ in php.ini.Regards,
JosueCan you post a link to the svg you’re trying to use?
Cheers!
JosueHi!
PHP deprecation is related to a specific function, which function -from the theme- is considered deprecated? if you have access to the logs that will be able to tell which, in any case i’d say you can safely rollback to 5.4 as it is the version most people use with Enfold.
A “deprecated function” error looks like this:
Deprecated: Assigning the return value of new by reference is deprecated in /home//public_html/hub/wp-settings.php on line 662Regards,
JosueHi!
It’s a bit strange indeed, fortunately a new patch will be released in a few days, one of the changes involves the autoresponder functionality, it may solve your issue.
Cheers!
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
function change_blog_archive_style() { global $avia_config; if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; } } add_action('get_header', 'change_blog_archive_style');Cheers!
JosueLinks are removed now, and yes that’s the correct code.
Hello!
It is possible but it would require a heavy modification to the theme, unfortunately that’s beyond our support scope. You can request a customisation quote from a third-party provider here.
Regards,
Josue -
This reply was modified 9 years, 7 months ago by
-
AuthorPosts
