• Resolved mdsaude

    (@mdsaude)


    Hi, guys, is there a way to increase the number of related posts shown? The way it is, I can only show 3. I would like to show at least 6 related posts. Until the last update, I could do this editing the plugin code, but now, I just cannot find where it is.

    I also would like to increase the size of my header logo. It is 190×36, but I would like it to be 200×90. Again, I was able to do this until the last update, editing the code. But now, if I change

    $metadata[‘publisher’][‘logo’] = array(
    ‘@type’ => ‘ImageObject’,
    ‘url’ => $structured_data_logo ,
    ‘height’ => 36,
    ‘width’ => 190,
    );
    to

    $metadata[‘publisher’][‘logo’] = array(
    ‘@type’ => ‘ImageObject’,
    ‘url’ => $structured_data_logo ,
    ‘height’ => 90,
    ‘width’ => 200,
    );

    Nothing happens.

    Regards.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Ahmed Kaludi

    (@ahmedkaludi)

    Hi @mdsaude

    After the update, the file structure has been changed. You can find the related post code in plugin- directory/templates/design-manager/design-1 OR design-2/elements/releted-post.php

    Regarding the Header Logo you are changing the wrong code the correct file path is plugin- directory/templates/design-manager/design-1 OR design-2/header-bar.php change the code in this file to change the size of the logo.

    do let me know if you have any question

    Thanks

    Thread Starter mdsaude

    (@mdsaude)

    Yes, I got it. Thank you very much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Related posts and Header logo’ is closed to new replies.