Digital experiences for all disciplines
Forum Replies Created
-
-
October 29, 2013 at 2:56 pm in reply to: function to disable the creations of not necessary woocommerce pictures #29135
Hi,
I removed them but an issue has been generated.
Please look at picture attached.https://www.dropbox.com/s/11xd8rzbl3mwbl7/error_occured.jpg
Thanks
Simonehello,
I added but nothing is chaged.
I think is not a CSS problem but a function issue not working for iOS devices.Please look at with ipad -> http://test.laboratorio35.com/
Thanks
SimoneABOUT PARALLAX for iOS device -> Please contact the developer and send him the code shown in the link below -> http://stackoverflow.com/questions/9592788/how-to-build-parallax-scroll-on-an-ios-device
ok but i tried other third plugins and I have seen that parallax is working also for ipad.. so how to improve the parallax of your website?
thanks
SimoneOctober 24, 2013 at 4:32 pm in reply to: To know the name of the file generates facebook meta tags of product share #28224please look at picture linked
https://www.dropbox.com/s/p1dxfyuys665rst/sharing_content.jpg
thanks
SimonePlease let me know the name of the file that is responsible meta-tags of facebook for the sharing of product.
IT’s URGENT
Thanks
SimoneHi,
the issue was that you override the original function.php file of woocommerce so the code received from woocommerce must be insert inside sf-woocommerce.php
This information is very important ands must be said by support assistance.
Thanks
Simoneyou are not able to create a function.php file for the child theme?
Yes please it’s necessary to have a function.php file inside the child theme.
Thanks
Simonethis plugin uses 4 MB of my php memory.. it’s a big value..
i test better and i let you know
because the plugin uses other setting and different icons design… if you want to offer a great theme with a great layout all icons must have the same etc
Thanks
SimoneI tried it.. but I do not want to use a third plugin I need that the metaTAGS inside the theme will be adjusted.
Thanks
SimoneBut can I use the same Social icons of the theme?
Dear Mr. Tahir,
the issue is caused when I try to add the code below inside the function.php file ( the code is necessary to customize button with woocommerce style.
I do not understand if the issue is caused by the code or the position where I insert it.
add_action( ‘wp_enqueue_scripts’, ‘woocommerce_enqueue_chosen’ );
function woocommerce_enqueue_chosen() {
global $woocommerce;
$suffix = defined( ‘SCRIPT_DEBUG’ ) && SCRIPT_DEBUG ? ” : ‘.min’;
wp_register_script( ‘ajax-chosen’, $woocommerce->plugin_url() . ‘/assets/js/chosen/ajax-chosen.jquery’.$suffix.’.js’, array(‘jquery’, ‘chosen’), $woocommerce->version );
wp_register_script( ‘chosen’, $woocommerce->plugin_url() . ‘/assets/js/chosen/chosen.jquery’.$suffix.’.js’, array(‘jquery’), $woocommerce->version );
wp_enqueue_script( ‘ajax-chosen’ );
wp_enqueue_script( ‘chosen’ );
wp_enqueue_style( ‘woocommerce_chosen_styles’, $woocommerce->plugin_url() . ‘/assets/css/chosen.css’ );
}add_action( ‘wp_footer’, ‘woocommerce_make_variations_chosen’ );
function woocommerce_make_variations_chosen() {
echo ”
<script language=\”JavaScript\”>
jQuery(\”.variations select\”).chosen({ disable_search_threshold: 100 });
jQuery(\”.woocommerce-ordering select\”).chosen({ disable_search_threshold: 100 });
</script>
“;
} -