ip11166
Forum Replies Created
-
Thank you.
Option 1 won’t help. If, when adding featured image, I choose a smaller size version fitting the thumbnail dimensions, then the same small size image will be used on the article page, which is not desired. Whatever image size I use, Flatter will use the same image both for thumbnail and for featured image in the individual article view.Example is here: http://bit.ly/1TRGYVm
First article with coastline image shows thumbnail image, but when you click to see the article, it will still have the same thumbnail on the top as featured image. Other articles will show full size images when you visit them, however the same full size images are used to present them as thumbnails for articles listed on the home page.Best way to handle this is like other themes do: user simply chooses a full-size image that will be used for the article page as a featured image, and then theme should correctly substitute this image with its thumbnail version automatically generated by WP on image upload and use it in the home page and sidebar when listing and featuring articles.
I am not sure if the regenerate thumbnail will help, as I don’t want to create new thumbnails, I already have generated them by WP. I just want to show thumbnail image as img src in the homepage when listing featured pages. Is there any way to do this now without changing the theme, which I really like?
OK, thank you!
Forum: Plugins
In reply to: [Autoptimize] how to compress autoptimized css and js filesGreat! Thank you, this helped.
Forum: Themes and Templates
In reply to: [Storefront] header gets its own vertical scroll barI had to roll back to previous version of the theme to workaround the problem, that is why it could not replicate the issue using old links.
Here is the new link to the test version that has the latest version of the theme installed:
http://bit.ly/1Xn9SSqLooks like the problem is with the file style.css.
When I replace it with the file from the old version, header works fine just as in the links presented originally in my first post.Maybe you can tell what exactly line in the css file is causing the problem so that I could replace it in the style.css in the child theme.
Forum: Plugins
In reply to: [Max Mega Menu] menu does not show flyout anywhere except homepagLooks like this related to problems with the theme.
ALso, after creating a clone, I noticed an issue with creation new users. Each time I try to create a user, I receive message “Sorry, that email address is not allowed!” – it shows for any possible email entered.
Thanks Cory!
It worked for me. However, I noticed another strange thing how DUplicator handles multisite installations.
After I created a clone, all links to network admnistration became broken – instead of http://ch20160518.2biz.ca/wp-admin/network/ it created link like this http://ch20160518.2biz.cawp-admin/network/ – i.e slash is omitting after the domain name. Even if I enter the correct URL manually it redirect to incorrect anyway, which makes multisite administration impossible.THank you! Will try with your instructions.
Can you post the URL of the thread where there are codes to solve organizing categories?
Was this resolved in the latest version?
Thanks.This seems to depend on the theme chosen. With WP default 1216 theme, the blank screen does not show. But I need a different theme 🙁
Can you suggest how to fix a problem of blank screen for other themes?This all seem to heavily depend on the theme chosen. WIth WP default 1216 theme, the string “uwpsfsearchtrg” does not show. But I need a different theme 🙁
Can you suggest how to fix this problem with other themes.And also it there way to completely get rid of this Title: “You searched for:”?
I also added this code to functions.php as suggested in this thread https://ww.wp.xz.cn/support/topic/cutomize-the-search-result-uwpsfsearchtrg?replies=10, but it did not help:
I use Business Directory Theme by https://www.inkthemes.com/add_filter( ‘get_search_query’, ‘change_uwpqsf_var’, 20, 1 );
function change_uwpqsf_var($s){
if($_GET[‘s’] == ‘uwpsfsearchtrg’){
return ”; //return empty. or you can return the value you want
}
return $s;//if not return normal search query.
}I also read these threads but they seem not cover my situation as I do not have the plugin Theme My Login (TML) installed:
https://ww.wp.xz.cn/support/topic/getting-searchresults-uwpsfsearchtrg?replies=8
https://ww.wp.xz.cn/support/topic/plugin-doesnt-work-with-theme-my-login?replies=3I also tried to add the code below to functions.php but it did not help, I still have title “You searched for: uwpsfsearchtrg”
if ( function_exists( ‘theme_my_login’ ) ){
add_action(‘init’,’remove_tml_filter’,”,1);
function remove_tml_filter(){
if ( isset($_GET[‘s’]) && $_GET[‘s’] == ‘uwpsfsearchtrg’ ){
$TMLclass = Theme_My_Login::get_object();
remove_filter( ‘pre_get_posts’, array($TMLclass, ‘pre_get_posts’ ) );}
}
}Thanks! it works well!