• Resolved refael747

    (@refael747)


    Hi, when I click on a particular category, it leads me to a white blank page. I’d glad to figure out how to fix this.

    Thanks!

Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    it seems your theme is not 100% compatible with WPAdverts, there are few ways to have it resolved.

    1. install an Alt Term Links snippet https://github.com/simpliko/wpadverts-snippets/blob/master/alt-term-links/alt-term-links.php.

    How to install it you can read here https://github.com/simpliko/wpadverts-snippets/ at the bottom of the page.

    This is an easy solution which should work with any WP theme, the disadvantage is that the Ad category pages might not be indexed in Google.

    2. create a taxonomy-advert_category.php template file as explained here https://wpadverts.com/documentation/child-themes-and-templates/ in the “Custom Taxonomy Template” section.

    This requires some PHP programming knowledge to do, but the Ad Category pages will be indexed the same way as the post categories in Google.

    Thread Starter refael747

    (@refael747)

    Thanks, and sorry for the late response. I’m still stuck in Step 1. How to do step 3* of installing Alt Term Links?

    I saved the file, but where can I find the “wp-content / plugins folder”?
    Even with a ZIP file I was unable to install.

    * (Save the page from your browser to your wp-content/plugins folder and upload to your server. Alternatively you can compress the file as a .zip file and upload as a plugin from within WordPress”)

    Plugin Author Greg Winiarski

    (@gwin)

    You can download the zipped Alt Term Links snippet here https://www.dropbox.com/s/oeswmw49nxjsx0i/alt-term-links.zip?dl=0.

    Once you have the zip file on your computer upload and activated it from wp-admin / Plugins / Add New / Upload panel.

    Thread Starter refael747

    (@refael747)

    Thank you! After installing the ZIP, the problem was solved even without the second step.

    Another thing: because I use the plugin in Hebrew, the price tag surpasses the date of the classified. You gave me this code* that solved it, but now I notice that it worked out only on a page that shows all ads, but not on the actual category pages.

    I would be glad to know how to solve this. Thanks again:)

    * .adverts-list .advert-price {
    left: 5px;
    right: auto;
    }

    Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    hmm can you paste a link to a page where you are having this problem or a screenshot so i could see the issue looks like?

    Thread Starter refael747

    (@refael747)

    Thanks.
    As I wrote, on a page that displays all classifieds (main page), the problem is solved, but on each category’s page, the problem is not solved, As you can see here.

    Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    ohh ok, but the problem here is that there is not enough space (width) to fit both price and date in the same line, there are few ways to solve it:
    – change number of columns to a smaller number you can do that from wp-admin / Classifieds / Options / Core panel
    – hide price or date
    – move price to the bottom

    If you would like to use the solution 2 or 3 then go to wp-admin / Appearance / Customize / Additional CSS panel and add there one of the codes below

    
    /* hide date */
    .advert-item-col-4 span.advert-date {
        visibility: hidden;
    }
    /* hide price */
    .advert-item-col-4 div.advert-price {
        visibility: hidden;
    }
    /* move price to the bottom */
    .advert-item-col-4 div.advert-price {
        width: 100%;
        position: relative;
        right: 0;
        left: 0;
        box-sizing: border-box;
    }
    
    Thread Starter refael747

    (@refael747)

    Thank you so much:)

    Plugin Author Greg Winiarski

    (@gwin)

    Sure, no problem i am glad you have it resolved :).

    BTW. If you are finding the plugin useful i would be thankful if you could write a short one or two sentence review here https://www.ads-software.com/support/view/plugin-reviews/wpadverts

    Thread Starter refael747

    (@refael747)

    Of course. Thank you!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Category page not shown’ is closed to new replies.