• Resolved lovefamilyholidays

    (@lovefamilyholidays)


    Hi

    I use WP Adverts to display listings of holiday accommodation on my site.

    I would like to list these listings (or ads) beneath the ‘blog options’ on my homepage, but obviously, they are not blog posts, they are ‘ads’.

    Can anyone suggest a way to make this work please?

    My site – Love family holidays . co . uk

    Thanks ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author WebHunt Infotech

    (@webhuntinfotech)

    Hi,

    If you want to show your ads on home page then you can use “extra content”

    option. Here you can put shortcodes and content here.

    Go to Dashboard Admin Panel >> Appearance Menu >> Customize >>

    Kyma Options >> Extra Content Options.

    Or try to search any plugins from WordPress Plugin directory.

    Hope it will help you.

    Thank You

    Thread Starter lovefamilyholidays

    (@lovefamilyholidays)

    Hi

    Thanks for the quick reply.

    I added the ads using the wp shortcode and the extra content option. However I have a couple of queries.

    For some reason I can’t work out, the box which would take visitors to page 2 of the results is pointing towards a page which is nothing to do with the wp adverts plugin – it appears to be something to do with my other plugin PG Simple Affiliate Shop? Can you tell why?

    For the title ‘Search by Accommodation Type & Location’, is there a way to get the font the same as the font which says ‘Find the best places to go with kids on holiday!’? Perhaps by editing this code?

    <h1 style="text-align: center;">Search by Accommodation Type & Location</h1>
    <p>&nbsp;</p>

    The keyword and location boxes have their internal text somewhat cut off on both this page and the accommodation search page. Is there a way to fix that?

    Lastly, is there a way to rearrange the order of the Kyma options?

    Thanks for your help ??

    Sally

    Theme Author WebHunt Infotech

    (@webhuntinfotech)

    Hi,

    Please do not bundle all the threads at once. create a separate tickets for

    separate issue.

    For you title issue follow below instructions:

    Use below HTML code

    <div class="main_title centered upper">
    	<h2 id="service_heading">
    		<span class="line"><span class="dot"></span></span>Search by Accommodation Type & Location
    	</h2>
    </div>

    instead of this

    <h1 style="text-align: center;">Search by Accommodation Type & Location</h1>

    For your last issue follow below instructions:

    Create a “Child-Theme” first. Now create a “home-page.php” file into your

    “Child-Theme” directory. Open it into any text editor.

    Here you will see line of code in this file as given below.

    <?php
    /* Template Name: Home */
    get_header();
    get_template_part('home', 'slider');
    get_template_part('home', 'service');
    get_template_part('home', 'portfolio');
    get_template_part('home', 'blog');
    get_template_part('home', 'content');
    get_template_part('call', 'out');
    get_footer();
    ?>

    Now rearrange the home page service section please use below line of code snippet:

    <?php
    /* Template Name: Home */
    get_header();
    get_template_part('home', 'slider');
    get_template_part('home', 'portfolio');
    get_template_part('home', 'blog');
    get_template_part('home', 'content');
    get_template_part('home', 'service');
    get_template_part('call', 'out');
    get_footer();
    ?>

    Save the changes.

    That means changes the order according your need. Hope you understand.

    For your remaining issue please provide screen-shot link with more detail.

    So we can assist you better.

    Let us know for further assistance.

    Thank You

    Thread Starter lovefamilyholidays

    (@lovefamilyholidays)

    Hi

    Thanks for the help.

    Please see

    As you can see, the blue number ‘2’ is linking to a page which is actually more something to do with a different plugin (pg simple affiliate shop)

    Not quite sure what’s going on there?

    Theme Author WebHunt Infotech

    (@webhuntinfotech)

    Hi,

    Please explain your issue in more details.

    Thank You

    Thread Starter lovefamilyholidays

    (@lovefamilyholidays)

    This issue appears to have repaired itself! Always nice when that happens ??

    Thanks anyway for your help ??

    Theme Author WebHunt Infotech

    (@webhuntinfotech)

    Most Welcome.

    Thank You

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘WP ads as blog options’ is closed to new replies.