Forum Replies Created
-
AuthorPosts
-
Hi bigtime32!
Yes, the login page customization requires some additional code – on the php and css level. I recommend to use a plugin like: https://wordpress.org/plugins/custom-login/ to customize the login page.
Best regards,
PeterHey!
Try to add this code to your child theme functions.php file or enfold/functions.php:
add_filter('avia_post_grid_query', 'avf_custom_post_grid_query'); function avf_custom_post_grid_query ( $query ) { $query['orderby'] = 'date'; $query['order'] = 'ASC'; return $query; }
This code will make sure that your portfolio entries are ordered by date with an ascending order.
Regards,
PeterHi mcalabro!
Please update to Enfold 2.8. I recommend to use ftp to update the theme: https://vimeo.com/channels/aviathemes/67209750
Cheers!
PeterHey!
This is unfortunately not possible without changing the publishing date. We use two standard wordpress functions http://codex.wordpress.org/Function_Reference/get_next_post and http://codex.wordpress.org/Function_Reference/get_previous_post functions to query the next/previous post. Unfortunately these functions will ignore your custom order. If you want to change the order you can change the “Publish” date on the portfolio entry editor screen: http://www.clipular.com/c/6512378338344960.png?k=ePmDZIgkUwalUmwsnswk1m_t0Qw
Alternatively you can use some php code to hide the buttons:
function avf_same_category_navigation($settings) { if($settings['taxonomy'] == 'portfolio_entries') $settings['is_fullwidth'] = true; return $settings; } add_filter('avia_post_nav_settings','avf_same_category_navigation', 10);
Regards,
PeterJune 1, 2014 at 5:06 pm in reply to: Absolute paths of images -> Site breaks when changing URL #272962Hi!
I recommend to use WP MigrateDB or WP MigrateDB PRO to export the database and to replace the old url/domain with a new one otherwise there’s a high chance that some serialized data breaks your website.
Best regards,
PeterHi!
Please contact the host provider/administrator. The session folder needs to be configured on the server and we can’t change or fix this with our theme files. Also see https://kriesi.at/support/topic/error-issues-with-masonry_entries-php-on-line-33/#post-271660 for more details.
Best regards,
PeterHey!
On the “Theme Option” page (Enfold > Theme Options > Theme Update) there’s a link to an image which explains where you can create/find the api key – see http://kriesi.at/wp-content/themes/enfold/framework/images/layout/FIND_API.jpg
Regards,
PeterHi!
Maybe Enfold can’t regenerate the dynamic stylesheet for one (or more) languages. Please use a ftp client and connect to your server. Navigate to wp-content/uploads/dynamic_avia/ and set the folder permission to 777. Then delete the enfold.css file and all other css files – the name of the files may vary based on the language shortcut – inside the dynamic_avia folder. Afterwards go to Enfold > Theme Options to regenerate the dynamic stylesheets (hit the green “Save all changes” button). Please re-save the options for all languages. If this doesn’t solve the problem please create me an admin account and I’ll look into it.
Cheers!
PeterMay 30, 2014 at 10:32 am in reply to: Avia Builder goes in conflict with Media File Manager Advanced plugin #272314Hey SergeVG!
Yes, the plugin causes several javascript errors on the editor page. It’s simply not compatible with Enfold. If you need a plugin which handles the image galleries for you I recommend http://wordpress.org/plugins/nextcellent-gallery-nextgen-legacy/ or http://wordpress.org/plugins/nextgen-gallery/ (although it’s very buggy especially on servers with older PHP versions).
Cheers!
Peter-
This reply was modified 11 years, 2 months ago by
Dude.
Hi southerndesign!
Please make sure that the ” trusted advisors” page is a subpage of “Our services” (= parent page). You can set the page hierarchy on the editor page (dropdown on the right side): http://www.clipular.com/c/5406320207331328.png?k=ZAAxJX2r6gu2MCsJS7ftFeybtxU
Cheers!
PeterHey!
Great, glad it worked ;)
Best regards,
PeterHey!
Yes exactly – you need to add the code ( https://kriesi.at/support/topic/fullscreen-slider-pause-issue/#post-272276 ) to your child theme functions.php – otherwise the child theme won’t load the modified shortcodes.js file.
Cheers!
PeterHi kevinjsutton!
Use this code to center the phone number and to increase the font size – you can add it to the child theme style.css file or quick css field:
.av_phone_active_left .phone-info { padding-left: 45px; font-size: 12px; }
You can also use different values if 45px and 12px don’t give you the best results.
If you want to add a phone icon to the phone number insert
<span class="avia_button_icon" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span>787866455
into the “Phone Number or small info text” option field (Enfold > Theme Options > Header Layout) and replace 787866455 with your phone number.
Regards,
PeterHey ShortieD!
Please insert this code into the quick css field:
#top .main_color .special_amp{ color: inherit; }
Best regards,
PeterHey simonac!
Please post a link to your contact form and mailpoet page – we need to investigate the css code.
Cheers!
PeterHey!
Yes, I forgot to set the “autoplay” variable to true. I corrected the code here: https://kriesi.at/support/topic/fullscreen-slider-pause-issue/#post-271664
If you want to overwrite the default (parent theme) shortcode.js file with your child theme copy the shortcode.js file from the parent theme folder into the js folder of your child theme (i.e. the path looks like wp-content/themes/enfold-child/js/shortcodes.js) and add this code to the child theme functions.php file:
if(!is_admin()) add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 1); function avia_register_child_frontend_scripts() { $child_theme_url = get_stylesheet_directory_uri(); wp_dequeue_script('avia-shortcodes'); wp_enqueue_script( 'avia-shortcodes', $child_theme_url .'/js/shortcodes.js', array('jquery'), 1, true ); }
Cheers!
PeterHi!
No, I don’t think that’s the cause of the problem but your best bet is to contact the host/server administrator. They know the server configuration and limitations better than we do and can give you a precise answer.
Cheers!
PeterHey AsadIC!
I can’t test the page (I don’t see any videos here: http://52kards.com/library/ ) and not sure why the ! character would break the hash value but you can try to replace:
if (fixedMainPadding > 0 && hash && apply_to_container == 'body') { var scroll_to_el = $(hash);
with
if (fixedMainPadding > 0 && hash && apply_to_container == 'body') { if(hash.indexOf("!") > -1) return; var scroll_to_el = $(hash);
If this code change doesn’t solve the issue please contact the plugin author.
Cheers!
PeterHey AREA10STUDIO!
You can use this code to query the portfolio categories of an entry:
$taxonomies = get_object_taxonomies(get_post_type($ID)); $cats = ''; $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($ID), $ID); if(!empty($taxonomies)) { foreach($taxonomies as $taxonomy) { if(!in_array($taxonomy, $excluded_taxonomies)) { $cats .= get_the_term_list($ID, $taxonomy, '', ', ','').' '; } } } if(!empty($cats)) { echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." "; echo $cats; echo '</span><span class="text-sep text-sep-cat">/</span>'; }
and this code to display the tags:
$posttags = get_the_tags($ID); if(!empty($posttags)) { $taglinks = array(); foreach($posttags as $tag) { $taglinks[] = '<a href="'. get_tag_link($tag->term_id) .'">'. $tag->name .'</a>'; } if(!empty($taglinks)) { $taglinks = implode(",", $taglinks); $output .= $taglinks; } }
Regards,
PeterHi!
If you just need page specific widget areas you can also use this plugin http://wordpress.org/plugins/display-widgets/
Cheers!
PeterHey!
Ok, I hope it works out.
Regards,
PeterHi!
The http://codex.wordpress.org/Function_Reference/get_next_post and http://codex.wordpress.org/Function_Reference/get_previous_post functions query the next/previous post based on the “Publish” date. If you want to change the order you can change the “Publish” date on the portfolio entry editor screen: http://www.clipular.com/c/6512378338344960.png?k=ePmDZIgkUwalUmwsnswk1m_t0Qw
Best regards,
PeterHey!
Unfortunately we’re not familiar with IIS configuration and tbh this is not a theme issue because the 404 page redirection is done by wordpress (and won’t work regardless of the theme you’re using). Your best bet is to use google to search for a solution – I found this article: http://briancaos.wordpress.com/2012/06/12/custom-404-page-ignored-by-iis-7/
Cheers!
PeterHey!
I did a quick test and this css code seems to work for me – you can insert it into the quick css field:
.ipt_uif_common.ipt-uif-custom-smoothness input.ipt_uif_text { margin-left: 50px !important; }
Best regards,
PeterMay 29, 2014 at 9:44 am in reply to: How to change the product-slider item size / Wie ändere ich die product-slider g #271686Hi!
1) Mein Code enthält bereits die “slide-entry-wrap” Klasse, welche nur die Slider Produkte ansprechen sollte. Falls wieder Erwarten auch andere Preise verschwinden müssen wir den Code untersuchen, da es da zu viele Möglichkeiten gibt. Hierzu bitte die Seite irgendwie online stellen, ansonsten können wir leider nicht helfen.
2) Meinst du die Anzahl der Produkte pro Reihe? Hierzu unter WooCommerce > Einstellungen > “Produkte” Reiter gehen und dann bei “Column and Product Count” die Anzahl der Produkte pro Reihe (Column Count) konfigurieren.
Best regards,
PeterHi Micheal0424!
You can try to activate LayerSlider as a standalone plugin. Copy the wp-content/themes/enfold/config-layerslider/LayerSlider/ folder into the wp-content/plugins/ directory, then deactivate Enfold and go to Plugins > All Plugins to activate LayerSlider as a plugin. Then go back to Themes > All Themes to activate Enfold. Afterwards LayerSlider shouldn’t depend on the Enfold theme code anymore.
Cheers!
PeterHey!
Great, glad you found the culprit ;)
Cheers!
PeterHey!
Please insert this code into the quick css field:
.blog-tags.minor-meta{ display: none !important; }
Cheers!
PeterHi doroth!
Wahrscheinlich kann der Browser (Firefox, IE) die Fonts nicht laden, da ein “Cross Domain Origin” Fehler auftritt. Dies sollte sich mit ein paar Änderungen in der htaccess Datei beheben lassen http://davidwalsh.name/cdn-fonts
Cheers!
Peter -
This reply was modified 11 years, 2 months ago by
-
AuthorPosts