Forum Replies Created
-
AuthorPosts
-
Hi!
The menu/dropdown doesn’t support small screen sizes. It seems like you deactivated the mobile menu (slide out menu or dropdown) and thus the menu seems to be broken on small screens. Please revert the changes you made (make a backup first), then make sure that the mobile menu works again. Afterwards re-apply your custom code until the menu breaks again – then we know which code is the culprit.
Best regards,
PeterJanuary 21, 2014 at 11:02 am in reply to: Open request for comments, site review, and help with link image #212695Hi Ed!
I suggest this plugin: http://wordpress.org/plugins/wordpress-seo/ – it enables you to set an preview image + custom desription text for facebook and google plus and you can use the “social” tab ( http://www.clipular.com/c/5678826713513984.png?k=2EpKGdnQl0mtbk_vvn_O5O2cfYY ) to change it for each entry (posts, pages, etc.).
Cheers!
PeterHey!
Did you check if the character code is valid? Maybe \E73C does not exist in the “entypo-fontello” font family. If it’s a custom character the font family may vary (i.e. maybe it’s called “fontello”).
Cheers!
PeterHi!
Our theme will strip all posts/pages of the other languages by default and you’ll only see the entries of the current selected language in the dropdown/select box. If you want to show all pages insert following code at the bottom of functions.php
add_action( 'init', 'avia_deactivate_wpml_page_filter', 10); function avia_deactivate_wpml_page_filter(){ remove_filter( 'avf_dropdown_post_query', 'avia_wpml_filter_dropdown_post_query', 10, 4); }
Cheers!
PeterHi Erik!
Can you post a link to the pricing table please?
Best regards,
PeterHi modelity!
Open up functions.php and insert following code at the very bottom of the file
if(!function_exists('avia_modify_blog_breadcrumb')) { add_filter('avia_breadcrumbs_trail','avia_modify_blog_breadcrumb'); function avia_modify_blog_breadcrumb($trail) { if(get_post_type() === "post" && (is_single() || is_category() || is_archive() || is_tag())) { $blogid = 20; if($blogid) { $blog = '<a href="' . get_permalink( $blogid ) . '" title="' . esc_attr( get_the_title( $blogid ) ) . '">' . get_the_title( $blogid ) . '</a>'; array_splice($trail, 1, 0, array($blog)); } } return $trail; }
and replace 20 with the id of your blog page.
Regards,
PeterHi runekjensen!
WordPress supports a special option field for the rel attribute. Go to Appearance > Menus and click on the “Screen Options” tab in the right top corner. Then tick the checkbox next to “Link Relationship (XFN)” and WP will show a new menu option for each menu item (called “link Relationship (XFN)”). You can insert the “prettyPhoto[iframes]” property/text into this field and the link should open in a lightbox window.
Regards,
PeterHey!
Thanks for the kind words :)
Cheers!
PeterHi!
Please post a link to the page with the slider + iconbox. I couldn’t find it on the homepage…
Regards,
PeterHey!
We can’t help you with this request because it’s not theme related and a customization. Please hire a freelancer (i.e. here: http://werkpress.com/ or here: http://www.microlancer.com/ ) who can customize the woocommerce plugin code for you.
Cheers!
PeterHey!
No, the hover effect is currently not available for portfolio items and would require a theme code customization.
Cheers!
PeterHey basilicon!
We reported the issue to Kriesi.
Best regards,
PeterHi!
You can use another filter – insert following code at the bottom of the functions.php file (child theme or parent theme):
add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4); function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta) { $custom_url = get_post_meta($attachment->ID, '_gallery_link_url', true); $link = !empty($custom_url) ? $custom_url : $link; return $link; }
Cheers!
PeterHi David!
You can change the scroll effect in the gallery option/modal box: http://www.clipular.com/c/5844663923638272.png?k=kpW9Aw9E9gbNaWSuXuSe5QXCPA0
Best regards,
PeterJanuary 20, 2014 at 3:59 pm in reply to: Permalinks woocommerce Fehler oder Missverständnis? #212273Hey adrianwackernah!
Danke für den Hinweis!
Cheers!
PeterHey!
Sure, you can post the status updates here or send them to (Email address hidden if logged out)
Regards,
PeterHi!
Please go to Settings > Permalinks and click the blue “Save” button to flush the permalink rules. This should also fix the 404 error.
Regards,
PeterHi Fabrice!
You can use this plugin: http://wordpress.org/plugins/shortcode-exec-php/ to embed any php code into you posts/pages.
Best regards,
PeterHey yucozt!
If you want to remove the title open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and delete
$output .= "<h2 class='portfolio-preview-title entry-title' $markup><a href='{$link}'>".$entry->post_title."</a></h2>";
Regards,
PeterHi rogerbjl!
Do you mean the map above the contact form: http://www.clipular.com/c/4792068069130240.png?k=y9PLoAPG3I9DQqywGG93Id5Acks – it displays fine for me at the moment?
Cheers!
PeterHi!
Please elaborate – which problems did you notice?
Best regards,
PeterHey xpoveda!
But I doubt this is a theme issue. Did you test this with TwentyThirteen – probably the stylesheets will also load in the footer area.
Regards,
PeterHi Imburr!
We’ll take care of them with the next theme update. For a quick fix open up /wp-content/themes/enfold/config-woocommerce/config.php and replace
//generate markup $output = ""; $output .= "<div class='product-sorting'>"; $output .= " <ul class='sort-param sort-param-order'>"; $output .= " <li><span class='currently-selected'>".__("Sort by",'avia_framework')." <strong>".$product_order[$po_key]."</strong></span>"; $output .= " <ul>"; $output .= " <li".avia_woo_active_class($po_key, 'default')."><a href='".avia_woo_build_query_string($params, 'product_order', 'default')."'> <span class='avia-bullet'></span>".$product_order['default']."</a></li>"; $output .= " <li".avia_woo_active_class($po_key, 'title')."><a href='".avia_woo_build_query_string($params, 'product_order', 'title')."'> <span class='avia-bullet'></span>".$product_order['title']."</a></li>"; $output .= " <li".avia_woo_active_class($po_key, 'price')."><a href='".avia_woo_build_query_string($params, 'product_order', 'price')."'> <span class='avia-bullet'></span>".$product_order['price']."</a></li>"; $output .= " <li".avia_woo_active_class($po_key, 'date')."><a href='".avia_woo_build_query_string($params, 'product_order', 'date')."'> <span class='avia-bullet'></span>".$product_order['date']."</a></li>"; $output .= " <li".avia_woo_active_class($po_key, 'popularity')."><a href='".avia_woo_build_query_string($params, 'product_order', 'popularity')."'> <span class='avia-bullet'></span>".$product_order['popularity']."</a></li>"; $output .= " </ul>"; $output .= " </li>"; $output .= " </ul>"; $output .= " <ul class='sort-param sort-param-sort'>"; $output .= " <li>"; if($ps_key == 'desc') $output .= " <a title='".$product_sort['asc']."' class='sort-param-asc' href='".avia_woo_build_query_string($params, 'product_sort', 'asc')."'>".$product_sort['desc']."</a>"; if($ps_key == 'asc') $output .= " <a title='".$product_sort['desc']."' class='sort-param-desc' href='".avia_woo_build_query_string($params, 'product_sort', 'desc')."'>".$product_sort['asc']."</a>"; $output .= " </li>"; $output .= " </ul>"; $output .= " <ul class='sort-param sort-param-count'>"; $output .= " <li><span class='currently-selected'>".__("Display",'avia_framework')." <strong>".$pc_key." ".$per_page_string."</strong></span>"; $output .= " <ul>"; $output .= " <li".avia_woo_active_class($pc_key, $per_page)."> <a href='".avia_woo_build_query_string($params, 'product_count', $per_page)."'> <span class='avia-bullet'></span>".$per_page." ".$per_page_string."</a></li>"; $output .= " <li".avia_woo_active_class($pc_key, $per_page*2)."><a href='".avia_woo_build_query_string($params, 'product_count', $per_page * 2)."'> <span class='avia-bullet'></span>".($per_page * 2)." ".$per_page_string."</a></li>"; $output .= " <li".avia_woo_active_class($pc_key, $per_page*3)."><a href='".avia_woo_build_query_string($params, 'product_count', $per_page * 3)."'> <span class='avia-bullet'></span>".($per_page * 3)." ".$per_page_string."</a></li>"; $output .= " </ul>"; $output .= " </li>"; $output .= " </ul>";
with
//generate markup $output = ""; $output .= "<div class='product-sorting'>"; $output .= " <ul class='sort-param sort-param-order'>"; $output .= " <li><span class='currently-selected'>".__("Sort by",'avia_framework')." <strong>".$product_order[$po_key]."</strong></span>"; $output .= " <ul>"; $output .= " <li".avia_woo_active_class($po_key, 'default')."><a href='".avia_woo_build_query_string($params, 'product_order', 'default')."' rel='nofollow'> <span class='avia-bullet'></span>".$product_order['default']."</a></li>"; $output .= " <li".avia_woo_active_class($po_key, 'title')."><a href='".avia_woo_build_query_string($params, 'product_order', 'title')."' rel='nofollow'> <span class='avia-bullet'></span>".$product_order['title']."</a></li>"; $output .= " <li".avia_woo_active_class($po_key, 'price')."><a href='".avia_woo_build_query_string($params, 'product_order', 'price')."' rel='nofollow'> <span class='avia-bullet'></span>".$product_order['price']."</a></li>"; $output .= " <li".avia_woo_active_class($po_key, 'date')."><a href='".avia_woo_build_query_string($params, 'product_order', 'date')."'> <span class='avia-bullet'></span>".$product_order['date']."</a></li>"; $output .= " <li".avia_woo_active_class($po_key, 'popularity')."><a href='".avia_woo_build_query_string($params, 'product_order', 'popularity')."' rel='nofollow'> <span class='avia-bullet'></span>".$product_order['popularity']."</a></li>"; $output .= " </ul>"; $output .= " </li>"; $output .= " </ul>"; $output .= " <ul class='sort-param sort-param-sort'>"; $output .= " <li>"; if($ps_key == 'desc') $output .= " <a title='".$product_sort['asc']."' class='sort-param-asc' href='".avia_woo_build_query_string($params, 'product_sort', 'asc')."' rel='nofollow'>".$product_sort['desc']."</a>"; if($ps_key == 'asc') $output .= " <a title='".$product_sort['desc']."' class='sort-param-desc' href='".avia_woo_build_query_string($params, 'product_sort', 'desc')."' rel='nofollow'>".$product_sort['asc']."</a>"; $output .= " </li>"; $output .= " </ul>"; $output .= " <ul class='sort-param sort-param-count'>"; $output .= " <li><span class='currently-selected'>".__("Display",'avia_framework')." <strong>".$pc_key." ".$per_page_string."</strong></span>"; $output .= " <ul>"; $output .= " <li".avia_woo_active_class($pc_key, $per_page)."> <a href='".avia_woo_build_query_string($params, 'product_count', $per_page)."' rel='nofollow'> <span class='avia-bullet'></span>".$per_page." ".$per_page_string."</a></li>"; $output .= " <li".avia_woo_active_class($pc_key, $per_page*2)."><a href='".avia_woo_build_query_string($params, 'product_count', $per_page * 2)."' rel='nofollow'> <span class='avia-bullet'></span>".($per_page * 2)." ".$per_page_string."</a></li>"; $output .= " <li".avia_woo_active_class($pc_key, $per_page*3)."><a href='".avia_woo_build_query_string($params, 'product_count', $per_page * 3)."' rel='nofollow'> <span class='avia-bullet'></span>".($per_page * 3)." ".$per_page_string."</a></li>"; $output .= " </ul>"; $output .= " </li>"; $output .= " </ul>";
Regards,
PeterHey!
It works now – I had to replace the dash ( – ) with & #8211;
Regards,
PeterHey!
This code should work: https://kriesi.at/support/topic/wpml-language-switcher-options-not-working/#post-210621 – if it doesn’t please post a link to your website.
Best regards,
PeterHey!
You can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests/
Cheers!
PeterJanuary 20, 2014 at 10:54 am in reply to: Footer widgets not showing on frontpage/homepage, but showing on all other pages #212164Hey!
Your website shows me a php code warning ( /home/domains/neulinger.at/public/htdocs/wp-content/plugins/wpshopgermany/wpshopgermany.php ). Please try to deactivate all plugins and check if the issue persists.
Best regards,
PeterJanuary 20, 2014 at 10:51 am in reply to: Post Slider: need to show full story and button content element #212160Hey!
Hmmm… not sure why it stopped working especially because the server always executes the same code. Maybe the website was cached and the first code I posted here: https://kriesi.at/support/topic/post-slider-need-to-show-full-story-and-button-content-element/#post-207422 worked?
Best regards,
PeterHey jduarte!
You can try following css code
div.flare{ display: none !important; } #top div.flare:nth-of-type(0){ display: block !important; }
Regards,
Peter -
AuthorPosts