Hi, it would be best if you could link to your site so i could test it for myslef, if the site is not online then the screenshots would do.
As for the screenshots itself, i do not have a Mac computer so i cannot tell how to make them, but i suppose there should be some system software for this or a “prt scr” button on the keyboard.
Thread Starter
eliepc
(@eliepc)
http://s682.photobucket.com/user/epc1/media/Screen%20Shot%202016-10-05%20at%204.07.19%20PM_zpsssqdpoh4.png.html
http://s682.photobucket.com/user/epc1/media/Screen%20Shot%202016-09-30%20at%201.59.16%20PM_zpszemg22hr.png.html
Also when in the preview the url of the page is
websitename/classified-4/add/ (it should probably change to websitename/classified-4/looking-for-maid/
but when i look at it through normal means the url is
websitename/advert/looking-for-maid/
It seems the WPAdverts CSS file is not being loaded on the Ad details pages, try adding following code to your theme functions.php file and see if this helps.
function force_wpadverts_scripts_and_styles() {
wp_enqueue_style( 'adverts-frontend' );
wp_enqueue_style( 'adverts-icons' );
}
add_action( 'wp_enqueue_scripts', 'force_wpadverts_scripts_and_styles' );
Thread Starter
eliepc
(@eliepc)
It helps and makes it look better but the “Show Contact Information” button doesn’t work and it just brings me to the top of the page and for some reason under the picture another box just appears.
http://s682.photobucket.com/user/epc1/media/Screen%20Shot%202016-10-06%20at%209.55.55%20AM_zpsklgolp4l.png.html
Its seems like some caption box but i don’t know how i should take it out
1. The top picture you would need to hide using CSS, i could send you a code for this, but i would need this page URL to take a look at it.
2. It seems the scripts are not being loaded as well, add to the function from last message following line
wp_enqueue_script( 'adverts-frontend' );
Thread Starter
eliepc
(@eliepc)
It’s a private website so it wont load for you. If you have some code I could put in I’ll put it in and see if it runs
Also thanks that code worked in removing that bottom empty box.
Without the site access i will not be able to tell how to hide the featured image i am afraid, but you can ask your theme support: how to hide the featured image using CSS on custom post type page?
They should be able to tell without looking into site source code.
Thread Starter
eliepc
(@eliepc)
Oh no no, the image with the mom and child are what I put in and everything looks good now It’s just the “Show Contact Information” button thats bugged now. It just scrolls the page up and doesn’t show anything.
Hmm, adding the line i posted few messages ago (wp_enqueue_script( 'adverts-frontend' );) should take care of this.
If this won’t help it would be best if you could share your site URL, as it will be rather hard to debug this by looking at screenshot only.