Forum Replies Created
-
AuthorPosts
-
Hey!
Hallo,
ja, das ist machbar. Öffne wp-contentthemesenfoldframeworkphpclass-framework-widgets.php and ersetze
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});durch
infowindow.open(map,marker);
Regards,
Peter
Verwende folgenden Code in der child theme functions.php um den Pfad der avia.js Datei zu ändern
function avia_change_js_path()
{
$child_theme_url = get_stylesheet_directory_uri();
wp_deregister_script( 'avia-default' );
wp_register_script( 'avia-default', $child_theme_url.'/js/avia.js', array('jquery'), 1, true );
wp_enqueue_script( 'avia-default' );
}
add_action( 'init', 'avia_change_js_path');Im child theme folder lege dann den js Ordner an und lade in diesen deine Datei hoch.
Hi,
add following code to the theme functions.php file – I’d recommend to insert it into the child theme functions.php or at the very beginning of the parent theme functions.php after the <?php opening tag.
add_theme_support('avia_manual_updates_only');
Hey!
Glad it worked. We’ll fix this in the next update.
Regards,
Peter
Please try to flush the permalinks (go to Settings > Permalinks and hit the save button). If this doesn’t solve the issue install: http://wordpress.org/plugins/rewrite-rules-inspector/ and click the “Flush rules” button on the right side. If this still doesn’t help you maybe need to update your htaccess file manually: http://codex.wordpress.org/Using_Permalinks#Creating_and_editing_.28.htaccess.29
September 13, 2013 at 4:53 pm in reply to: How to disable only on one certain page the lightbox overlay? #140579Hey!
Ok, then revert the change and replace
avia_hover_effect(container);
with
if( !$('body').hasClass('page-id-1437') ) avia_hover_effect(container);
Best regards,
Peter
Hey!
Try following fix – open up enfold/config-woocommerce/config.php and replace
echo "</div>"; // end tempate-shop content
with
echo "</div>"; // end tempate-shop content
echo "</div>"; // close default .container_wrap elementRegards,
Peter
Hey!
I think it’s hidden because the header bar overlaps it – try to insert following code intothe quick css field
#advanced_menu_toggle, #advanced_menu_hide {
z-index: 500;
}Best regards,
Peter
September 13, 2013 at 4:40 pm in reply to: Shopping cart only shows up once then disappears when you browse away #139550Hi!
You can try the fix Kriesi posted here: https://kriesi.at/support/topic/search-broken-on-the-events-calendar-pro-calendar-pages#post-137640
Best regards,
Peter
Hi!
I can’t recommend a specific advertisement plugin but I tested this map plugin: WP Google Maps and it works very well with Enfold.
Best regards,
Peter
Hey!
Please post a link to your website.
Regards,
Peter
Hi!
I didn’t test the plugin but: http://wordpress.org/plugins/kwayy-html-sitemap/ seems to work pretty good.
Regards,
Peter
September 13, 2013 at 11:51 am in reply to: Is it safe to update site with Enfold theme to the new WordPress 3.6.1 ? #140788Hi!
Yes, no bug reports so far…
Best regards,
Peter
September 13, 2013 at 11:35 am in reply to: Function to get the Logo in fixed Header smaller if you´re scroll the site down #140766You can try to manually reduce the st value to reach a better scaling effect but you’ll always notice a “jump” at some point. Search for
var st = win.scrollTop(), newH = 0;
and try to reduce the st value like
var st = win.scrollTop() - 100, newH = 0;
you need to try different values – 100 may not be the best value in your case but – 50 may work better, etc.
Hi!
I noticed I forgot to rewrite the category query itself. Please replace the entire code in related-posts.php with https://gist.github.com/InoPlugs/2fe563ced777b10522e3
Best regards,
Peter
Hi!
I sent Kriesi a mail and asked him to look into it asap.
Best regards,
Peter
September 13, 2013 at 10:13 am in reply to: Advanced Layout Builder features incompatible with Page Templates in Child Theme #141022Hey!
Can you please give me the link or the page title of the page which doesn’t work?
Best regards,
Peter
Hey!
I think this post will help you: https://kriesi.at/support/topic/advanced-layout-editor-dissappeared-please-help#post-125233
Regards,
Peter
Hi!
I tested the code and it works for me. Did you insert it after
global $avia_config;
in functions.php?
Best regards,
Peter
Right now Kriesi is working on his website (new kriesi.at website which uses an Enfold child theme) and after the relaunch we’ll release the new version which includes all fixes and various other improvements.
Hey!
1) I’d insert a nbsp;
2) It seems like the number of rows is different? Did you try to add two rows to the first 2 columns?
Best regards,
Peter
September 13, 2013 at 9:26 am in reply to: Portfolio Grid / Product Grid and Widgets don't work with WPML #140507Hey!
I couldn’t access the slideshow here: http://satmo.com.br/novo_site/explicacao/ – the page just redirects me to http://satmo.com.br/novo_site/
Regards,
Peter
According to the plugin page you need to call the subtitle function in your theme files ( http://wordpress.org/plugins/wp-subtitle/ ). Open up includes/loop-index.php and replace
echo $title;
with
echo $title;
the_subtitle();I though you want to remove the padding from the content slider but now I noticed you want to remove it from the logo slider. Open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/logoslider.php and replace
$output .= "<div class='avia-smallarrow-slider-heading'>"
with
$heading_class = '';
if($navigation == 'no') $heading_class .= ' no-logo-slider-navigation ';
if($heading == ' ') $heading_class .= ' no-logo-slider-heading ';
$output .= "<div class='avia-smallarrow-slider-heading $heading_class'>";and insert following code into the quick css field
.no-logo-slider-navigation.no-logo-slider-heading{
display: none;
}Bzgl 2) Rücksicht auf Suchmaschinenoptimierung – darüber lässt sich oftmals streiten, da “Blog – Die letzten Neuigkeiten” nun einmal eine der Hauptüberschriften ist und im Gegensatz zu h1 h2 auch öfters vorkommen darf. Es ist daher teilweise persönliche Ansichtssache welche Stellenwert man welcher Überschrift zuordnet. Der eine meint nur h3, der ander h4 der nächste nur span, etc.
Möchte man den Tag abändern würde ich folgenden Code zu functions.php hinzufügen
add_filter('avf_title_args', 'change_single_post_title', 10, 2);
function change_single_post_title($args,$id)
{
if ( is_single() )
{
$args['heading'] = 'strong';
}
return $args;
}– in diesem Fall wird h2 gegen einen “strong” Tag ersetzt.
Hi,
1) Insert following code into the quick css field to reduce the padding of the footer.
#footer {
padding: 15px 0;
}You can replace 15px with a lower value if required.
2) There’s no need for css code – just remove following code from enfold/js/avia.js
// decreases header size when user scrolls down
avia_header_size();Hey!
Maybe you need to include additional subsets (latin extended in your case). Use the code I posted here https://kriesi.at/support/topic/google-fotns-with-extended-latin-subset and add it to the top of functions.php
Best regards,
Peter
Hey!
Update – see: https://kriesi.at/support/topic/how-to-use-nextgen-gallery-with-enfold-and-other-kriesi-themes – Emfold now supports NextGen 2.0.x and Nextgen Pro.
Best regards,
Peter
September 12, 2013 at 10:06 am in reply to: Fix: Missing alt-text for flags in wpml-config results in W3 validation errors #140600Hey!
Will be fixed in the next version.
Best regards,
Peter
September 12, 2013 at 10:02 am in reply to: iframe – advanced layout builder (trying to load external page content iframe) #140656Did you try another iframe source (google maps, etc). I think the content of http://www.cchwebsites.com/econtent/iframes/calculators.php is invalid (html & body tags are missing, etc.) and maybe that’s why the browser won’t show it.
-
AuthorPosts