Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter iachia

    (@iachia)

    Hi, thank you for looking into the problem.
    To be a little more specific about the issue: the SEO plugin works fine but if CP Google Maps is enabled it prevents the saving of any option change in the SEO.
    It just won’t save any change.
    If I disable CP it works fine.
    Can you check?
    Thanks!

    I can also confirm that a google maps plugin was the problem.
    I’m using CP Google Maps and after deactivating it WordPress SEO started working again

    I too have a problem since updating to 4.0: when I try to modify any option in wordpress SEO (for example change something in the sitemap settings) the modifications aren’t saved.
    When I press the update button I get a blank screen with this address:
    https://mysite.com/wp-admin/options.php
    and nothing happens.

    I checked with javascript console and no errors are reported.

    Thread Starter iachia

    (@iachia)

    Hi, thanks again for your reply.
    I looked at the header file and it’s already showing this code:
    <body <?php if (isset($class)){ body_class($class); } ?>>
    If I try to chafe it with yours the site goes blank… don’t ask me why ??
    can you still see the page id that way?

    Thread Starter iachia

    (@iachia)

    Thank you otiria for your time and sorry for my late reply but I didn’t get the email notification for some reason…
    I added the Adwords code to the thank you page in Italian (esito richiesta as you noted) and it’s working ok.
    I have no idea about how WPML works but I know I have a thank you page in English (called receipt) that is listed in my page menu.
    I’m not very comfortable in editing themes…
    Hope you can still take a look when you have a second.
    Thanks again

    Thread Starter iachia

    (@iachia)

    Hi, thanks for checking!
    This is my search.php:
    <?php

    $id_404 = ( isset( $ish_options[‘use_page_for_404’] ) && ( ‘1’ == $ish_options[‘use_page_for_404’] ) && isset( $ish_options[‘page_for_404’] ) ) ? $ish_options[‘page_for_404’] : ”;

    get_header();

    //<!– Lead part section –>
    $lead = ‘<div class=”search-lead”>’;
    $lead .= ‘<h1 class=”color1 page-title”>’ . sprintf( __( ‘Search Results for: %s’, ‘ishyoboy’ ) , ‘<span>’ . get_search_query() . ‘</span>’ ) . ‘</h1>’;
    $lead .= ‘</div>’;
    ishyoboy_custom_lead($lead);
    //<!– Lead part section –>

    ?>

    <!– Content part section –>
    <section class=”part-content”>
    <div class=”row”>
    <div class=” grid12 no-sidebar”>
    <?php
    // Breadcrumbs display
    ishyoboy_show_breadcrumbs();
    ?>

    <?php if (have_posts()) :

    echo ‘<div class=”search-results-container”>’;

    while (have_posts()) : the_post(); ?>

    <div class=”search-result clearfix”>
    <div class=”lined-section-only” style=”white-space: nowrap;”><span style=””></span></div>

    <?php

    if ( (function_exists(‘has_post_thumbnail’)) && (has_post_thumbnail()) ) {
    //$img_details = wp_get_attachment_image_src( get_post_thumbnail_id( $id ), ‘full’);
    //$src = $img_details[0]
    //echo ‘<img src=”‘ . $src . ‘” class=”avatar avatar-70 photo” height=”70″ width=”70″>’;
    echo ‘‘;
    the_post_thumbnail(‘thumbnail’, Array(‘class’ => ‘search-result-image’));
    echo ‘
    ‘;
    }

    $title = get_the_title();

    $title = ( !empty( $title ) ) ? $title : ‘No title’;

    ?>
    <div class=”search-details”>
    <h5 class=”color1″>“><?php the_title(); ?></h5>
    <span class=”icon-calendar”><?php echo get_the_date(); ?></span>
    <?php if ( has_category() ) : ?>
    <span class=”icon-folder”><?php the_category(‘, ‘); ?></span>
    <?php endif; ?>
    <?php if ( has_tag() ) : ?>
    <span class=”icon-tags”><?php _e( ‘and’ , ‘ishyoboy’ ); ?> <?php the_tags(null, ‘, ‘); ?></span>
    <?php endif; ?>
    <?php echo ishyoboy_custom_excerpt(get_the_content(), 40, get_search_query()); ?>
    </div>
    </div>
    <div class=”divider”></div>

    <?php endwhile;
    echo ‘</div>’;

    global $wp_query;
    if(empty($paged) || 0 == $paged) $paged = 1;

    $pg = ishyoboy_get_pagination(”, 3, $wp_query->max_num_pages, $paged);
    if (” != $pg){
    echo $pg, ‘<div class=”space”></div>’;
    } else{
    echo ‘<div class=”space”></div>’;
    }

    ?>

    <?php else : ?>

    <div id=”post-0″ <?php post_class(); ?>>

    <div class=”space”></div>

    <h2 class=”entry-title”><?php _e(‘No results found.’, ‘ishyoboy’) ?></h2>

    <div class=”entry-content”>
    <p><?php _e(“Sorry, the content you are looking for could not be found.”, ‘ishyoboy’) ?></p>
    </div>

    <div class=”space”></div>

    </div>

    <?php endif; ?>

    </div>

    <?php
    // SIDEBAR
    //get_sidebar();
    ?>

    </div>
    </section>
    <!– Content part section END –>

    <!– #content END –>
    <?php get_footer(); ?>

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