Forum Replies Created

Viewing 15 replies - 181 through 195 (of 1,405 total)
  • Because I have a couple minutes, I did some digging and found that if you add toe following to the end of the theme’s function.php, it will do what you want

    add_filter( 'get_the_archive_title', function ($title) {
        if ( is_category() ) {
                $title = single_cat_title( '', false );
            } elseif ( is_tag() ) {
                $title = single_tag_title( '', false );
            } elseif ( is_author() ) {
                $title = '<span class="vcard">' . get_the_author() . '</span>' ;
            }
        return $title;
    });

    this is from a thread over on stackexchange dot com

    Besure to create a child theme if you use this so it won’t ‘disappear’ next time you update the theme

    Try this google search

    wordpress remove ‘category’ from page url

    For the worrd Category in the header, you will need to edit the header.php code Since your theme isn’t offered on wordpress.org, you should try contacting the theme’s support page for more help.

    Fixing errors is always a good thing. So lets look at the first error.
    1) Go to your site and view the source of the page.
    2) Copy it and paste it into a text editor.

    so the first error says:

    Error: End tag aside seen, but there were open elements.
    From line 287, column 1; to line 287, column 8
    /a></div>↩</aside> </d

    so go fine line 287 and find the beginning of the <aside> which is on line 285 – copy the block of code and paste it into a new text editor window and you will have;

    </div></aside><aside id="text-3" class="widget widget_text">			<div class="textwidget"><div style="text-align: center;">
    <a target="_blank" href="http://www.copyrighted.com/copyrights/view/kxdj-2y1c-1h4g-g6ot"><img src="http://res.cloudinary.com/angora/image/upload/v1456621666/Copyrighted_qys8q7.png" title="Bayu Angora © All Rights Reserved" alt="Bayu Angora © All Rights Reserved" width="150" height="40"/></a></div>
    </aside>			</div><!-- .widget-area -->

    Now lets make it pretty by putting each HTML element on its own line and get ride of anything before the <aside…> and you get:

    <aside id="text-3" class="widget widget_text">
    	<div class="textwidget">
    		<div style="text-align: center;">
    			<a target="_blank" href="http://www.copyrighted.com/copyrights/view/kxdj-2y1c-1h4g-g6ot">
    				<img src="http://res.cloudinary.com/angora/image/upload/v1456621666/Copyrighted_qys8q7.png" title="Bayu Angora © All Rights Reserved" alt="Bayu Angora © All Rights Reserved" width="150" height="40"/>
    			</a>
    		</div>
    </aside>

    If you look, you have a missing </div> in that text widget.

    If you go fix it, that error will be gone, now do the same investigation for the others.

    Whatever is in your meta description of your page is what Google will use. If you don’t have a description Google will choose a piece of your content. If you want to customize a catchy description (that will make people want to visit) for all your pages instead of it automatically being filled with your post/page content.

    you need to play whit the Yoast options and then wait (maybe a couple hours/days) for google to rescan your site.

    Wait, I’m still confused. Are you going to ‘google.com’ and putting in ‘skibansko.bg’?

    And you want to know how to change the order of the results that google is returning?

    You can always create a page with links to your other pages, but in general, pages are for static text, there are no ‘excerpt’s for pages.

    You can create a static front page and code that page so it has links and images and a short excerpt of all your other pages. What you can’t do is have it automatically created for you – well you could, you would have to code your own page-xx.php or page.php module for the theme and code the logic to walk thru teh published pages, create an excerpt and generate the html to display it all.

    Or there might even be a plugin that will work. Here is a link to an old (9 yrs old) thread that might help you.

    Forum: Fixing WordPress
    In reply to: screen options

    What option are you talking about?
    What backend area are you working in?

    Any options I check or uncheck remain after I dismiss the dropdown. It may be that there are some options that have been depreciated and once you uncheck them, they are removed.

    are you talking about ther reswults on google.com on in your own website?
    What plugin are you using?
    What theme are you using?
    what is the url pointing to an example?

    have you tried disabling ALL your plugins?

    also you should reduce the size of what you are sending – the site lods 3.3 Meg?? and takes 29.8 seconds to load!!! You got me to go there once, but I’d never go back if it takes that much time.

    1) the link you give doesn’t work, but http://laffordcarpenters.co.uk/ does.

    Those indivisual blocks – like ‘Handmade Kitchens’ and ‘Electrical’ are just links to posts using a featured post plugin.

    1) what happens if you swap to the twenty-sixteen theme?
    – this will check to see if it is a theme issue
    2) what happens if you disable ALL your other plugins
    – this will check if it is a plugin conflict
    3) exactly which photo gallery plugin are you using ? (url link to it please)

    HINT: Supplying the exact url that the issue appears on will save someone scowering thru your site to see if they can discover where the problem occurs.

    well you could create your own plugin and use a separate database/table to store the links in. From each WP site, the plugin would access to common DB/table and list all your links.

    This consul/will be a coding challenge for you, but it is one way I can imagine it might be done. Good Luck.

    Have you asked over at site origin dot com slash thread?

    Your theme is a premimum theme – you should go ask this on the themeforest support forum

    A vanilla WP database has 11 tables. Many plugins add their own tables to th database. I’m guessing that when you did the database backup, (maybe manually…maybe using a backup plugin) you did not choose all the tables to backup. This may or may not be the problem with the menu’s depending on what the plugins you have are.

    If you backup ALL the database tables and all the wordpress files:

    readme.html
    index.php
    license.txt
    wp-activate.php
    wp-blog-header.php
    wp-comments-post.php
    wp-config-sample.php
    wp-config.php
    wp-cron.php
    wp-links-opml.php
    wp-load.php
    wp-login.php
    wp-mail.php
    wp-settings.php
    wp-signup.php
    wp-trackback.php
    xmlrpc.php

    and wordpress folders

    wp-admin
    wp-content
    wp-includes

    along with any other files/folders that your plugins may have created, You should be able to restore them all on the new server and get things running.

Viewing 15 replies - 181 through 195 (of 1,405 total)