Digital experiences for all disciplines
Forum Replies Created
-
-
Hi,
Can you check the Username and password, after login it takes me to a 403 page, without that I can’t check the page you gave because maintenance mode is active I think.
Let us know,
Thanks,
laranz.Hi,
I didn’t see any sidebar in the category pages, can I test that by altering the value? http://www.devlcorg.info/?cat=16
Let us know,
Thanks,
laranz.Hi,
I forward this to our dev team to take a look at this missing piece.
Let us know, if you have any other questions.
Thanks,
laranz.Hi,
Try to switch the theme to its parent theme, if that works means, I think somewhere you type a character “c” in any of the files in the child theme apparently. So try try to find the file and delete the “c”. Maybe check in footer.php/header.php first.
Let us know,
Thanks,
laranz.Hi,
Can you check the plugin documentation or the plugin settings? I think, W3 Cache will work on custom post types too.
Let us know,
Thanks,
laranz.Hi,
1. Did you fix the issue? You mean the overlapping of search icon over the menu? I tested in a site and resize browser to iPad resolution both looking fine, http://responsivetest.net/#u=http://monkshop.eu/|1024|768|1
2. Use this Custom CSS in Theme Options to hide those on mobile and tablets.@media only screen and (min-width: 768px) and (max-width: 1024px) { .wc-new-badge, .cart-overlay { display: none !important; } } @media only screen and (min-width: 320px) and (max-width: 480px){ .wc-new-badge, .cart-overlay { display: none !important; } }
3. Yes, eliminate one item.. Also I didn’t reproduce that in my end, if I recreate I can check for some other solutions. Like you can use some Custom CSS to reduce the font size or change the margin to make it smaller in tablets.
Let us know,
Thanks,
laranz.April 1, 2015 at 7:48 am in reply to: Live search results; Disable dates, reviews and likes in search results #162484Hi,
1. That is the default WordPress search we are using, if you want customize further the search head over to \themes\neighborhood\includes\swift-framework\sf-content-display\sf-header.php line #960 you will see a function “sf_ajaxsearch” use that to customize the search results. You can try some plugins for relevance search also.
2. Add this in the Custom CSS to hide those details,
.search .post-item-details { display: none; }
if that didn’t work, try this
.search .post-item-details { display: none !important; }
Let us know,
Thanks,
laranz.Hi,
First make sure the theme is in latest version, Somehow the masonry scripts didn’t run when we switch languages, I forward this to our development team to take a look at the issue. Meanwhile, try disable all the plugins and check.
For a quick fix, add this in the Custom CSS.
.blog-items.masonry-items { opacity: 1 !important; }
Let us know,
Thanks,
laranz.Hi,
Can you give us the link of your site, so that I can give you the Custom CSS or the correct way to edit the color.
Let us know,
Thanks,
laranz.Hi,
Can you try to check the speed here: http://tools.pingdom.com/fpt/ I see some errors and can’t able to check it, can you fix the error and scan it again.
You can enable all those.
1. Leverage Browser Caching: https://developers.google.com/speed/docs/insights/LeverageBrowserCaching
2. Enable gzip compression: https://developers.google.com/speed/docs/insights/EnableCompression
3. Specify a Vary: Accept-Encoding header: Maybe like this http://www.wpcodesnippets.eu/solve-specify-vary-accept-encoding-header-pingdom-tools/
4. Minify JavaScript: You can use the Cache plugin to minify the js, if it has the option for it, else try w3 cache plugin.You can do more investigation about the issues.
Let us know,
Thanks,
laranz.Hi,
1. Can you show us the example URL that has the wrong product image on facebook.
2. Debug those URLs on facebook to check whether it fetch the right image or not, https://developers.facebook.com/tools/debug/
3. Make sure the product has the featured image set.
4. If all fails, try this plugin https://wordpress.org/plugins/nextgen-facebook/Keep me updated.
Let us know,
Thanks,
laranz.Hi,
The slowness is because it takes some time to load the font in to the browser, https://developers.google.com/fonts/faq#Performance can you try some lighter fonts and see that makes any changes other than “Vidaloka”?
Let us know,
Thanks,
laranz.Hi,
I tried to create a sample blog page, but it works without any issue for the masonry can you take a look at those?
German: http://palmyhealing.com/blogview/?lang=de
English: http://palmyhealing.com/blogview/Let us know,
Thanks,
laranz.Hi,
1. You can check this too: http://www.swiftideas.com/forums/topic/home-preloader-change-color/
2. Which color you want to change, so that I can give you the Custom CSS.
Let us know,
Thanks,
laranz.Hi,
Open up functions.php on line #142 change this,
wp_register_script('maps', 'http://maps.google.com/maps/api/js?sensor=false', 'jquery', TRUE);
to
wp_register_script('maps', 'https://maps.google.com/maps/api/js?sensor=false', 'jquery', TRUE);
and on line #532, change this http to https too.
$url = "http://maps.google.com/maps/api/geocode/json?sensor=false&address=$address";
Let us know,
Thanks,
laranz. -