Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello,

    You will need to integrate the contact form checkbox with a marketing automation platform.

    When the checkbox is activated the form will submit the information to the marketing automation platform you are using and save the details to a specific list.

    I can help you but only if I know which marketing automation platform you are using?

    • This reply was modified 6 years, 8 months ago by Wilhelm.

    You can find the content.php file in the location below

    /wp-content/themes/twentyseventeen/template-parts/post/

    Look for this code in the content.php file

    <div class=”entry-content”>
    <?php
    /* translators: %s: Name of current post */
    the_content( sprintf(
    __( ‘Continue reading<span class=”screen-reader-text”> “%s”</span>’, ‘twentyseventeen’ ),
    get_the_title()
    ) );

    wp_link_pages( array(
    ‘before’ => ‘<div class=”page-links”>’ . __( ‘Pages:’, ‘twentyseventeen’ ),
    ‘after’ => ‘</div>’,
    ‘link_before’ => ‘<span class=”page-number”>’,
    ‘link_after’ => ‘</span>’,
    ) );
    ?>
    </div><!– .entry-content –>

    REPLACE THE CODE ABOVE WITH:

    <div class=”entry-content”>
    <?php
    if ( is_single() ) :
    /* translators: %s: Name of current post */
    the_content( sprintf(
    __( ‘Continue reading<span class=”screen-reader-text”> “%s”</span>’, ‘twentyseventeen’ ),
    get_the_title()
    ) );

    wp_link_pages( array(
    ‘before’ => ‘<div class=”page-links”>’ . __( ‘Pages:’, ‘twentyseventeen’ ),
    ‘after’ => ‘</div>’,
    ‘link_before’ => ‘<span class=”page-number”>’,
    ‘link_after’ => ‘</span>’,
    ) );
    else :

    the_excerpt( sprintf(
    __( ‘Continue reading<span class=”screen-reader-text”> “%s”</span>’, ‘twentyseventeen’ ),
    get_the_title()
    ) );

    wp_link_pages( array(
    ‘before’ => ‘<div class=”page-links”>’ . __( ‘Pages:’, ‘twentyseventeen’ ),
    ‘after’ => ‘</div>’,
    ‘link_before’ => ‘<span class=”page-number”>’,
    ‘link_after’ => ‘</span>’,
    ) );
    endif;
    ?>
    </div><!– .entry-content –>

    Hello, you can manually revert back to a previous WordPress version to resolve the issue.

    Hello rajkarn1009,

    You will need to edit the content.php file of the Twenty Seventeen Theme to show excerpt instead of the full content posts.

    Hello,

    What WordPress plugin are you using to display your gallery?

    Maybe I can help!

    Thread Starter Wilhelm

    (@wilhelm945)

    Hi Author,

    I have updated NextGen to the latest version and I have added the shortcode with the ‘gallery-caption.php’ and I still get the error.

    You can look on the web page it does not display: http://authentictravel.co.za/rooms/

    [ngg_images source=”galleries” container_ids=”2″ display_type=”photocrati-nextgen_basic_thumbnails” override_thumbnail_settings=”0″ thumbnail_width=”240″ thumbnail_height=”160″ thumbnail_crop=”1″ images_per_page=”20″ number_of_columns=”0″ ajax_pagination=”0″ show_all_in_lightbox=”0″ use_imagebrowser_effect=”0″ show_slideshow_link=”0″ slideshow_link_text=”[Show slideshow]” template=”/usr/www/users/authegzhtq/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/ngglegacy/view/gallery-caption.php” order_by=”sortorder” order_direction=”ASC” returns=”included” maximum_entity_count=”500″]

Viewing 6 replies - 1 through 6 (of 6 total)