Forum Replies Created
-
AuthorPosts
-
Hi Yigit,
problem solved…thanks for the code. Many thanks! :-)
Do you see any chance that the icon can be on the same height as the toogle title?
Sunny regards,
AlexanderHi Ismael,
now i´m very sorry…i forgot to tell that i build the product with the advanced editor and i choose a gallery modul, Big picture with thumbnail. The gallery is nothing from woocommerce it´s from enfold. Is there a possibility to have the thumbails at the right sight? Plz… :-)
Best regards,
AlexanderHi Ismal,
i´m sorry but the code didn´t work. We build the products with the advanced builder. Could this be the problem?
AlexanderHi team,
YOU are the very best! Code works…many thanks!!! Job done. :-)
AlexanderHi Victoria,
many thanks.. the code works fine for the menu entries. The code for the widget title i fixed on my own.At last i need your help for last questions:
– Is it possible to give the widget menu entries a different background with an border between?
– Actual the entries are very close each other. Is is possible to give them a bit more space.
– All entries have actual the same text color, by hoover it´s going gold. i want to present the active choice in gold textMany thanks in advance for your patience and help.
AlexanderHi Jordon,
it´s simple… i want the text left allign. :-)
Plz have a look to the link that i send into the private content
Very best regards,
Alexander
Hi!
at first many thanks to the support team of Kriesi. You always do a great job.
My customer and i earned for this page an IHK @Award 2017 into the category layout and design.
https://www.brautbluete.de
It´s a bridal wear shop in Krefeld, Germany
Alexander- This reply was modified 7 years, 1 month ago by alexandernoe.
Hi Yigit,
that was not the trick. ;-)
Inside the private area i give u the login credentials for an easier research.
I found into the forum different solutions but they did not work.
The page is simple build with an product grid with a category filter.
Hope you can help…Enfold Yedi ;-)
AlexanderYes and also on the shoppage
Best regards
Alexander
Hi team,
i found myselve the solution:
1 .Just copy below mentioned code and paste it in a new file :<?php
/**
* Product quantity inputs
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.4.7
*/if ( ! defined( ‘ABSPATH’ ) ) exit; // Exit if accessed directly
global $product;
$defaults = array(
‘max_value’ => apply_filters( ‘woocommerce_quantity_input_max’, ”, $product ),
‘min_value’ => apply_filters( ‘woocommerce_quantity_input_min’, ”, $product ),
‘step’ => apply_filters( ‘woocommerce_quantity_input_step’, ‘1’, $product ),
);if ( ! empty( $defaults[‘min_value’] ) )
$min = $defaults[‘min_value’];
else $min = 1;if ( ! empty( $defaults[‘max_value’] ) )
$max = $defaults[‘max_value’];
else $max = 10;if ( ! empty( $defaults[‘step’] ) )
$step = $defaults[‘step’];
else $step = 1;?>
<div class=”quantity_select”>
<select name=”<?php echo esc_attr( $input_name ); ?>” title=”<?php _ex( ‘Qty’, ‘Product quantity input tooltip’, ‘woocommerce’ ) ?>” class=”qty”>
<?php
for ( $count = $min; $count <= $max; $count = $count+$step ) {
if ( $count == $input_value )
$selected = ‘ selected’;
else $selected = ”;
echo ‘<option value=”‘ . $count . ‘”‘ . $selected . ‘>’ . $count . ‘</option>’;
}
?>
</select>
</div>2. Save that file and name it “quantity-input.php”
3. Paste this file in your woocommerce folder “yourthemefolder/woocommerce/global/quantity-input.php”
4. Its done.
Works great! ;-)
Alexander
- This reply was modified 7 years, 1 month ago by alexandernoe.
October 10, 2017 at 4:45 pm in reply to: Hide Tax and Shipping Rate on Shop and product grid #862528Hi team,
i found myselve the solution:.woocommerce-de_price_taxrate {
display: none !important;
}
.woocommerce_de_versandkosten {
display: none;
}You can close the ticket. ;-)
Alexander
This reply has been marked as private.August 9, 2017 at 3:15 pm in reply to: After Update from 4.0.7 to 4.1.2 i lost my footer sub menus #836444This reply has been marked as private.August 7, 2017 at 8:32 pm in reply to: After Update from 4.0.7 to 4.1.2 i lost my footer sub menus #835588This reply has been marked as private.July 3, 2017 at 11:57 am in reply to: How can i change the color of the "Scroll down arrow to next section" #815820Hi Sarah,
i´m sorry…no result. Maybe it´s faster if i give a temporaly login. Plz see attached credentials into Pricvate content. ;-)
Best regards,
Alexander
July 3, 2017 at 10:20 am in reply to: How can i change the color of the "Scroll down arrow to next section" #815774Hi Nikko,
thanks for the code…but it didn´t works. Plz have a look. The scroll down arrow in welcome section is still in white. See attached link. Many thanks in advance for your support.
Sunny regards,
AlexanderApril 21, 2017 at 9:11 am in reply to: Font size issue into Widget Individual Menu after upgrade to enfold 4.0.5 #781059Hi Nikko,
many thanks for your quick support.
Code works…but thats an issue since enfold update 4.0.x. Before it wasn´t…maybe an info to the developer team worth. ;-)
Best regards,
AlexanderMarch 8, 2017 at 3:08 pm in reply to: Simple way to change german translation for breadcrumbs #757830Update:
Hi Jordan,
i found the way myselve:
1. Install Plugin Loco Translate
2. Choose “Themes” > Enfold > German > Editor > search “You are here” > change german translation > doneSimple, or? :-)
Best regards
Alexander
March 8, 2017 at 2:30 pm in reply to: Simple way to change german translation for breadcrumbs #757791Hi Jordan,
i did… but inside the file no “Du bist…”
I have tried this path on FTP: wp-content > themes > enfold > framework > php > class-breadcrumb.php
What did i wrong?
Best regards
Alexander
Hi Kriesi-Team, hi Ismael,
YOU ARE THE VERY BEST!!! I can´t say it better…
Many thanks
Alexander
Hi Mike,
sorry for the delay…i was sick and out of order. :-(
After entry the code as advised into Quick CSS the homepage was not longer reachable.
I must recover the homepage from the backup.
In the functions.php i found this code. Possible that the customer tried to do himselves. Hmm… ;-)
Hope you can help.
Additional i send you credentials for the WP dashboard
Many thanks!
Alexander/* AJAX SEARCH */
if(!function_exists(‘avia_append_burger_menu’))
{
//first append search item to main menu
add_filter( ‘wp_nav_menu_items’, ‘avia_append_burger_menu’, 9998, 2 );
add_filter( ‘avf_fallback_menu_items’, ‘avia_append_burger_menu’, 9998, 2 );function avia_append_burger_menu ( $items, $args )
{
if(!avia_is_burger_menu()) return $items;if ((is_object($args) && $args->theme_location == ‘avia’) || (is_string($args) && $args = “fallback_menu”))
{$items .= ‘<li id=”menu-item-burger” class=”av-burger-menu-main menu-item-avia-special”>
<span class=”av-hamburger av-hamburger–spin av-js-hamburger”>
<span class=”av-hamburger-box”>
<span class=”av-hamburger-inner”></span>
‘.__(‘Menu’,’avia_framework’).’
</span>
</span>
‘;
}
return $items;
}
}You are allowed the deactivate the plugins for testing. But i don´t thing thats the reason. It would be helpful if the filter would automatically do a line break on small displays such as a smartphone.
Hi Andy,
plz see Login-Details in the private section
Many thanks for your help!
Alexander
September 5, 2016 at 5:18 pm in reply to: Hide Date and Time in Enfold Latest Portfolio widget #682283i found the solution myself…
.news-time {
display:none !important;
}Ok, thanks for the feedback!
Guys…you are the very best!!!
I checked this already…but a little more help would be helpful. How is the way? Video background is no option. I tried it with the recommended background and put a code modul also a standard text modul (CSS and HTML). But it doesn’t worked… :-(
Hi Yigit,
thanks for your input. But it´s only the half answer. I already know how to create a megamenu. The question is how can i insert a preview picture. Plz see also the attached link. Many thanks in advance for your help!
Alexander
February 15, 2016 at 2:28 pm in reply to: How can i create a simple "&" in enfold for the headlines #583426Cool! Thanks for your ultrafast support! Alexander
-
AuthorPosts