Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)
  • Thread Starter Hazloo

    (@hazloo)

    Thanks a lot for your quick answering!
    I’ll test all those tips and look for the best one.
    Thank you again for the time you spend in helping people!
    Best wishes
    Hazlo

    Thread Starter Hazloo

    (@hazloo)

    It must be such a big amount of time to develop a tool like this one that it is important to thank the author of the plugin especially as it is provided for free!
    So, thanks a lot!

    Thread Starter Hazloo

    (@hazloo)

    Fixed it!
    By adding !important to the font-family in my Child theme Css:

    h1, .h1, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: "Helvetica Neue", "ralewayregular", Helvetica, Arial, sans-serif !important;}

    This has been enough to force PC browsers to use the Raleway font (uploaded with @fontface), as a substitute for “Helvetica neue” which is not free, but provided but default on Mac computers only.

    Thread Starter Hazloo

    (@hazloo)

    Yes it is the 1.2.8 release

    Thread Starter Hazloo

    (@hazloo)

    Ok! Just found it!
    In functions.php of Omega parent theme I deleted the line saying:
    add_theme_support( ‘title-tag’ );
    The issue is fixed and the Seo Doctor check up is ok now!

    Hello,
    I have the same problem with the image dimensions for share buttons.
    Did you find a way?
    Thx!

    Thread Starter Hazloo

    (@hazloo)

    Just found the place but I don’t know what to change in the following code to fix my issue;
    Could someone help?
    Thx!

    * Dividers, Headers or Disabled
    * =============================
    * Determine whether the item is a Divider, Header, Disabled or regular
    * menu item. To prevent errors we use the strcasecmp() function to so a
    * comparison that is not case sensitive. The strcasecmp() function returns
    * a 0 if the strings are equal.
    */
    if ( strcasecmp( $item->attr_title, ‘divider’ ) == 0 && $depth === 1 ) {
    $output .= $indent . ‘<li role=”presentation” class=”divider”>’;
    } else if ( strcasecmp( $item->title, ‘divider’) == 0 && $depth === 1 ) {
    $output .= $indent . ‘<li role=”presentation” class=”divider”>’;
    } else if ( strcasecmp( $item->attr_title, ‘dropdown-header’) == 0 && $depth === 1 ) {
    $output .= $indent . ‘<li role=”presentation” class=”dropdown-header”>’ . esc_attr( $item->title );
    } else if ( strcasecmp($item->attr_title, ‘disabled’ ) == 0 ) {
    $output .= $indent . ‘<li role=”presentation” class=”disabled”>‘ . esc_attr( $item->title ) . ‘‘;
    } else {

    $class_names = $value = ”;

    $classes = empty( $item->classes ) ? array() : (array) $item->classes;
    $classes[] = ‘menu-item-‘ . $item->ID;

    $class_names = join( ‘ ‘, apply_filters( ‘nav_menu_css_class’, array_filter( $classes ), $item, $args ) );

    if ( $args->has_children )
    $class_names .= ‘ dropdown’;

    if ( in_array( ‘current-menu-item’, $classes ) )
    $class_names .= ‘ active’;

    $class_names = $class_names ? ‘ class=”‘ . esc_attr( $class_names ) . ‘”‘ : ”;

    $id = apply_filters( ‘nav_menu_item_id’, ‘menu-item-‘. $item->ID, $item, $args );
    $id = $id ? ‘ id=”‘ . esc_attr( $id ) . ‘”‘ : ”;

    $output .= $indent . ‘<li’ . $id . $value . $class_names .’>’;

    $atts = array();
    $atts[‘title’] = ! empty( $item->title ) ? $item->title : ”;
    $atts[‘target’] = ! empty( $item->target ) ? $item->target : ”;
    $atts[‘rel’] = ! empty( $item->xfn ) ? $item->xfn : ”;

    // If item has_children add atts to a.
    if ( $args->has_children && $depth === 0 ) {
    $atts[‘href’] = ‘#’;
    $atts[‘data-toggle’] = ‘dropdown’;
    $atts[‘class’] = ‘dropdown-toggle’;
    $atts[‘aria-haspopup’] = ‘true’;
    } else {
    $atts[‘href’] = ! empty( $item->url ) ? $item->url : ”;
    }

    $atts = apply_filters( ‘nav_menu_link_attributes’, $atts, $item, $args );

    $attributes = ”;
    foreach ( $atts as $attr => $value ) {
    if ( ! empty( $value ) ) {
    $value = ( ‘href’ === $attr ) ? esc_url( $value ) : esc_attr( $value );
    $attributes .= ‘ ‘ . $attr . ‘=”‘ . $value . ‘”‘;
    }
    }

    $item_output = $args->before;

    /*

    Thread Starter Hazloo

    (@hazloo)

    I think the issue is solved now by checking “Force rewrite Titles” in Yoast box.
    Thanks again for your time.
    Best.

    Thread Starter Hazloo

    (@hazloo)

    Hello James,
    Thanks a lot for your answer.
    But actually I cannot find any place in my site theme where the page title is present.
    I checked Yoast “Titles and Metas” and and found that the basic variable for titles is %%title%% %%page%% %%sep%% %%sitename%%
    is it correct?
    I also wonder if I should check the box “Force rewrite titles”?
    The trouble is that I don’t know if this happened after the last release of Yoast Plugin (3.0.3) or if the error was already there.

    On the source code of each page I get first:
    …..<title>THE PAGE TITLE AS MENTIONED IN YOAST BOX</title><link rel=”profile” href=”https://gmpg.org/xfn/11″><style type=”text/css” medi…….
    and the second time, somewhere else in the code :
    …..<title>THE PAGE TITLE AS MENTIONED IN YOAST BOX</title><meta name=”viewport” content=”width=device-width” /><meta name=”generator” content=”WordPress 4.3.1″ /><meta name=”description….etc….

    Thanks for your help!

    Thread Starter Hazloo

    (@hazloo)

    Ooops! sorry!
    I tried it through editing the style css and did not notice I could do it by directly customizing gthe background..
    Shame!
    Resolved!

    I just could fix the issue by deactivating the plugin from the network admin panel and activating it from every single site (for me it was quite easy as I only have 2 sites on my Multisite installation!)

    I guess it must not be the same easy for you Shane!

    I have troubles on my multisite installation too since the last update : I’m not allowed anymore to preview pages. It works fine when deactivating Google Analytics

    Hazloo

    (@hazloo)

    Hello

    Same trouble!
    I tried Abalone’s solution but it did not help.
    Finally I replaced the hole nivo-lightbox folder(wp-content/plugins/responsive-lightbox-lite/assets/nivo-lightbox/) with the old one I picked from my backup, and it worked again (it was quite easy because I was still on a local server).
    It must not be a big trouble and I guess the developer will fix it very soon.
    Hope this helps!

    Thread Starter Hazloo

    (@hazloo)

    Still searching but unable to fix my issue! Allways one flag and one language : the main one.
    Meaning that the switcher makes the page switch to itself!

    Thread Starter Hazloo

    (@hazloo)

    Opps! Sorry! After log out and in again the plugin settings are shown (Settings > Language)
    Many thanks to the author for this very useful plugin!

Viewing 15 replies - 1 through 15 (of 16 total)