eduhitter
Forum Replies Created
-
Please specify a way how to check the php error logs. Thanks!
Data from php.ini file:
max_execution_time = 180
memory_limit = 96M
upload_max_filesize = 32M
post_max_size = 64M
magic_quotes_gpc = offIt seems ok, right? I mean the memory limits should not cause the blank page.
check your PHP error logs as well as the page source for the overview page to see if there are any fatal errors showing up.
Thanks Greg for quick reply.
Unfortunatelly I dont know how to check all these. So it may take a while till I write you reply wether I managed to solve the problem or not.
So first I will find out how to check the PHP error logs and memory limits.
At the moment I dont eve know where to locate the php.ini….. 🙂
I keep you informed as i go.
Forum: Plugins
In reply to: [Easy Property Listings] Listings background transparentThanks Merv!
I tried to configure my theme today according the description in “getting started” menu.
I think I did everything as its written, but still problem is not solved completely, Although now I have a white background here (http://sosto.eu/property/zimmerke/) you can see that the arrow under the white box still does not have white background.
Another thing is that the whole page (http://sosto.eu/property/) completely transparent.Here are the codes that I found in the archive.php and single.php. Please highlight the parts that you think has to be replaced.
1. archive.php
<?php
/* Include the Post-Format-specific template for the content.
* If you want to overload this in a child theme then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( ‘content’, get_post_format() );
?><?php endwhile; ?>
<?php adventurous_content_nav( ‘nav-below’ ); ?>
<?php else : ?>
<?php get_template_part( ‘no-results’, ‘archive’ ); ?>
<?php endif; ?>
2. single.php<?php
/* Include the Post-Format-specific template for the content.
* If you want to overload this in a child theme then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
//get_template_part( ‘content’, get_post_format() );
$postformat = ( get_post_format() ? get_post_format() : ‘single’ );
get_template_part( ‘content’, $postformat );
?><?php adventurous_content_nav( ‘nav-below’ ); ?>
In the theme folder I also have index.php file that I did not dare to touch. Maybe I have to make some changes there also?
In my previous post I forgot to mention the name of the theme i use – its Adventurous (free version) link: https://wordpress.org/themes/adventurous
Forum: Themes and Templates
In reply to: [Adventurous] Trying to remove the tigersHey
I tell you how I did. Maybe there is another way, i don’t know…. (i use free demo version of the adventurous)
Its very simple. All you need to do is to create new image(s) that you want to upload instead of the one with tiger. Size is 1600х600px. Name it as it is named originally in the theme.
here you can locate the 2 files of the sliders (via your domains control panel or FTP manager) named slider-1-1600×600.jpg and slider-2-1600×600.jpg :
wp-content/themes/adventurous/images/demo
Just replace the images in that folder, then refresh the website and the new images should appear.
Hope it helped.