Forum Replies Created
-
AuthorPosts
-
Hi borge77,
Go to: {root}/wp-content/themes/yolo-canifa/woocommerce/myaccount/my-orders.php
and edit code like as at attachment. ( replace esc_html_e by __() )Thank you for your issue that found!
Thanks!
Hi Alexander,
I go to Customizer -> Woocommerce -> Shop Sidebar: Choose Main Sidebar -> Shop sidebar. That means choose again and Save.
When in Customizer, you should "Deactivate" autoptimize plugin, if not It will white background.Please check your site.
If you feel satisfied with our product and support, please rating for us 5star in
http://themeforest.net/item/canifa-the-fashion-woocommerce-wordpress-theme/13645472?s_rank=5It very important to us, we really appreciate for that!
If you any question, please contact for us. We will try to resolve for you soon.
_________
Best regards,
trinhnvHi dario,
Have you want a link title of "Yolo Service":
1. Go to {root}/wp-content/plugins/yolo-kidzone-library/admin/vc_extension/map/map.php2. Go to: {root}/wp-content/plugins/yolo-kidzone-library/admin/vc_extension/shortcodes/yolo-service.php
add the code like as at attachment.
If not true, please contact for us.
Thanks!
Hi GBAadmin,
If you have any question, please contact for us.
Thanks!
Hi Marcel,
You can do this:
Go to: {root}/wp-content/themes/yolo-canifa/assets/css/yolo.css
and remove this code:.yolo-calltoaction .action-left h2:before, .yolo-calltoaction .action-right h2:before { content: ""; position: absolute; top: 30px; left: 70px; width: 200px; height: 1px; font-style: italic; background-color: #f37259; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); z-index: -1; } @media (max-width: 1200px) { .yolo-calltoaction .action-left h2:before, .yolo-calltoaction .action-right h2:before { left: 50px; width: 150px; } } @media (max-width: 992px) { .yolo-calltoaction .action-left h2:before, .yolo-calltoaction .action-right h2:before { top: 20px; left: 35px; width: 100px; } } @media (max-width: 768px) { .yolo-calltoaction .action-left h2:before, .yolo-calltoaction .action-right h2:before { top: 15px; left: 0; right: 0; margin-left: auto; margin-right: auto; width: 90px; } }
about 13275 -> 13316 lines.
If not true, please contact for us.
Thanks!
Hi Krazle,
You can follow this link:
https://yolotheme.com/forums/topic/sidebar-on-shop-an-product-page/If not true, please contact for us.
Thanks!
9 years, 10 months ago in reply to: EVENTS: Please fix typo in Activities section and fix Maps #2260Hi Dan,
1. 'Schelude' - 'Schedule': Go to {root}/wp-content/themes/yolo-kidzone/single-event.php
about 116 - 118 lines, change to:<div class="panel-heading"> <h3><?php esc_html_e( 'Schelude', 'yolo-kidzone' ); ?></h3> </div>
2.
Go to: {root}/wp-content/themes/yolo-kidzone/includes/framework/meta-boxes/generate-meta-box.php (about 712 - 716 lines), change to:
$yoloEventMap = array( 'latitude' => get_post_meta( get_the_ID(), '_gmap_latitude', true ) ? get_post_meta( get_the_ID(), '_gmap_latitude', true ) : '40.714398', 'longitude' => get_post_meta( get_the_ID(), '_gmap_longitude', true ) ? get_post_meta( get_the_ID(), '_gmap_longitude', true ) : '-74.005279', 'localtion_disable' => false );
Go to: {root}/wp-content/themes/yolo-kidzone/includes/framework/assets/js/yolo_event.js
Replace all this file by the below code:var map; var infowindow; var marker; jQuery('#yolo_event_google_map_search_input').bind('keypress keydown keyup', function(e){ if(e.keyCode == 13) { e.preventDefault(); } }); function map_picker_initialize() { var markers = []; var myPlace = new google.maps.LatLng(yoloEventMap.latitude,yoloEventMap.longitude); map = new google.maps.Map(document.getElementById('yolo_event_google_map'), { flat:false, noClear:false, zoom: 16, scrollwheel: false, draggable: true, center: myPlace, mapTypeId: google.maps.MapTypeId.ROADMAP }); // Create the search box and link it to the UI element. var input = /** @type {HTMLInputElement} */( document.getElementById('yolo_event_google_map_search_input')); map.controls[google.maps.ControlPosition.TOP_LEFT].push(input); var searchBox = new google.maps.places.SearchBox( /** @type {HTMLInputElement} */(input)); google.maps.event.addListener(searchBox, 'places_changed', function() { var places = searchBox.getPlaces(); if (places.length === 0) { return; } for (var i = 0, marker; marker = markers[i]; i++) { marker.setMap(null); } var bounds = new google.maps.LatLngBounds(); for (var i = 0, place; place = places[i]; i++) { placeMarker(place.geometry.location); bounds.extend(place.geometry.location); } map.fitBounds(bounds); }); // [END region_getplaces] var property_location = myPlace; marker = new google.maps.Marker({ position: property_location, map: map, draggable: true }); // // localtion box content_location = ''; localtion_disable = yoloEventMap.localtion_disable; if(!localtion_disable) { content_location = '
Latitude: '+ property_location.lat() + '
Longitude: ' + property_location.lng() + ''; infowindow = new google.maps.InfoWindow({ content: content_location, maxWidth: 300 }); infowindow.open(map,marker); google.maps.event.addListener(map, 'click', function(event) { placeMarker(event.latLng); }); } google.maps.event.addListener(marker, 'drag', function() { infowindow.setContent('Latitude: '+ marker.getPosition().lat() + '
Longitude: ' + marker.getPosition().lng()+''); updateMarkerPosition(marker.getPosition()); }); google.maps.event.addListener(marker, 'dragend', function() { updateMarkerPosition(marker.getPosition()); }); } google.maps.event.addDomListener(window, 'load', map_picker_initialize); function placeMarker(location){ infowindow.close(); marker.setPosition(location); localtion_disable = yoloEventMap.localtion_disable; if(localtion_disable) { infowindow.setContent(''); } else { infowindow.setContent('Latitude: '+ location.lat() + '
Longitude: ' + location.lng()+''); } infowindow.open(map,marker); document.getElementById("_gmap_latitude").value=location.lat(); document.getElementById("_gmap_longitude").value=location.lng(); } function updateMarkerPosition(location) { document.getElementById("_gmap_latitude").value=location.lat(); document.getElementById("_gmap_longitude").value=location.lng(); }Save and check your site.
If you have any question, please contact for us.
Thanks!
9 years, 10 months ago in reply to: How to Centre the Main Menu and how to remove Shop Cart Icon from Menu #2259Hi tzevgit,
1. "View cart": You can Deactivate Woocommerce Plugin, you will not see “view cart” in the menu.
2. "Center Main Menu": Can you for me a screenshot.
Thanks!
Hi Dan,
Go to Customizer -> Site Enhancement -> Mailchimp Settings, here you can change your Id.
Thanks!
Hi Dan,
Thank for your cooperation.
I fixed Revolution slider, please check again.
Thanks!
Hi tzevgit,
You can Deactivate Woocommerce Plugin, you will not see "view cart" in menu.
Thanks!
Hi Skynnydoubley,
Go to: {root}/wp-content/themes/yolo-canifa/includes/customizer/css-php/design.php
Add new a line ( see at attachment ).In site, go to Customizer -> choose color again -> Save&Publish.
Thanks!
Hi floydstar,
Please send me account FPT and account administrator your site via private message.
I will check for you soon.
Thanks!
9 years, 11 months ago in reply to: WordPress Theme Install Fails with " Are you Sure you want to do this?" #2245Hi floydstar,
Please the following:
https://yolotheme.com/forums/topic/plugin-installs-failing/Hi dariofailla,
1. Contact form:
You can refereence here: http://contactform7.com/selectable-recipient-with-pipes/In administrator -> Dashboard -> Contact -> edit a form:
Example as in the attachment
Save and try to send mail.
( You can style for form in the yolo.css )2. Role for users.
You can use Advance access manager plugin
Or function of wordpress:
In administrator: Dashboard -> Users -> Edit a user
In "Role": choose "contributor" (see at attachment)
With this role, contributor can add and edit their events.
This events don't publish if it don't approved.If not true, please contact for us.
Thanks!
-
AuthorPosts
