jibril84
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [WP FanZone] Slider top articoloYou can find the solution in this other topic ??
Forum: Themes and Templates
In reply to: [WP FanZone] Right small slider pictures are squeezedHi ??
Sorry marannang, I didn’t see your question! Actually, I did some others changes, you can find them below.
swartzsports, you have to access you hosting with an FTP client and go to this folder /wp-content/themes/wp-fanzone/css/ There you will find the slider.css file. Download it, edit it and upload it to the same folder, overwriting the old file.Here are all (I hope) the changes you have to make.
Go to wp-fanzone/css/slider.css and
1) add this
max-height: 423px !important;
after this line
.pgwSlider .ps-current {
2) substitute this
ul.pgwSlider > li img, .pgwSlider > ul > li img {
width: 100%;
min-height: 100%;
display: block;
}with this
ul.pgwSlider > li img, .pgwSlider > ul > li img {
min-width: 100%;
min-height: 100%;
display: block;
}3) substitute this
@media (min-width: 481px) {
ul.pgwSlider > li:first-child, .pgwSlider > ul > li:first-child {
width: 100% !important;
}
ul.pgwSlider > li, .pgwSlider > ul > li {
width: 48% !important;
float:left;
margin-bottom:12px;
}
}with this
@media (min-width: 481px) {
ul.pgwSlider > li:first-child, .pgwSlider > ul > li:first-child {
width: 100% !important;
max-height: 135px !important;
}
ul.pgwSlider > li, .pgwSlider > ul > li {
width: 48% !important;
float:left;
margin-bottom:12px;
max-height:132px !important;
}
}Forum: Fixing WordPress
In reply to: plugins.php Internal Server Error after upgrade to 4.2.4Luca… THANK YOU! It worked for both my websites!!! *__*
James, thank you too for your patience and advices ??Forum: Fixing WordPress
In reply to: plugins.php Internal Server Error after upgrade to 4.2.4Thank you for your reply. I have tried every suggestion, the only one which has worked at half is deactivating all plugins and renaming the plugin folder. I recreated the folder with only the index.php, now I can access the plugin page, but when I go to plugin-install.php the Internal Server Error shows.
Also, the error log is empty (!)
I really don’t know what else I can do… I wish I had disabled the automatic upgrade before!!Forum: Plugins
In reply to: [Blog Authors] Alphabetical orderI’ve tried with different browsers, it doesn’t work ?? And it isn’t a problem of timing out, simply when I click on an arrow nothing happens. Maybe there’s a conflict with another plugin. Anyway, can you help me to change the code in order to display the authors in alphabetical order? I have many of them and they are increasing, it would be quite annoying to order them every time ??
Forum: Plugins
In reply to: [WP Autoset Featured Image Plus] Uploads a triage of imagesI’ve found the e-mail of the author here in the comments https://www.luciaintelisano.it/wp-autoset-featured-image-plugin-for-wordpress/
She has been really helpful and has solved the problem! So, if you want, you can download the latest version, it works ??Forum: Plugins
In reply to: [WP Autoset Featured Image Plus] Uploads a triage of imagesHi Wimtou, did you manage to solve this problem?
Forum: Themes and Templates
In reply to: [WP FanZone] Right small slider pictures are squeezedI solved this way:
Go to wp-fanzone/css/slider.css and substitute this
ul.pgwSlider > li img, .pgwSlider > ul > li img {
width: 100%;
min-height: 100%;
display: block;
}with this
ul.pgwSlider > li img, .pgwSlider > ul > li img {
min-width: 100%;
min-height: 100%;
display: block;
}Forum: Plugins
In reply to: [Blog Authors] display single author's informationThank you, it works fine! ??
Forum: Plugins
In reply to: [Blog Authors] link to authors' profile page and websiteThank you! After some attempts I’ve managed also to get the author’s profile page ??
$ba_html .= '<a href="'. get_author_posts_url($ba_id, $ba_id->user_nicename). '">'. get_userdata($ba_id)->user_firstname . '</a>';
Forum: Plugins
In reply to: [FeedWordPress] Too much text…I have the same problem. There is an add-on called “Limit Size of Posts” but it doesn’t seem to work with the latest version of WordPress, maybe because it hasn’t been updated for years… ??
Anyway, if you want to try it, you can download it here: https://github.com/radgeek/fwp-limit-size-of-postsDoes anybody know what to change in this add-on to make it work?