Forum Replies Created

Viewing 15 posts - 1,051 through 1,065 (of 1,124 total)
  • Author
    Posts
  • Andy
    Keymaster

    Did you receive my email?

    In the email I asked for some information about your WordPress setup and the type of database.

    For example is your live site a different type to your localhost site?
    There are different types with differences in how they store the data.

    As an example it could be that your live site’s database is MySQL and your localhost is Microsoft Access.
    Or it could be that in your ‘soa_options’ table the text type of the ‘option_value’ field is ‘tinytext’ instead of the correct ‘longtext’ which can store more data.

    We really do want to help you with this, but we are just guessing though here at the moment because you are not willing to reply with any useful information.

    Andy
    Keymaster

    As this issue is not related to the theme, I am going to close this topic and contact you via email to try and help you resolve the issue with your WordPress setup or the database table structure.

    in reply to: Missing Sidebar on Homepage #1420
    Andy
    Keymaster

    We’ve also added sidebar on/off/position for the blog index and archives, and thanks again for finding the bug.

    in reply to: Missing Sidebar on Homepage #1418
    Andy
    Keymaster

    Thanks for pointing out this issue. It will be fixed in the next update.

    Keep an eye on the themes in your site’s dashboard for the update.

    Andy
    Keymaster

    I have used the duplicator plugin many times and never had a problem with theme customizations. They are just another row in the ‘wp_options’ table, so they would be duplicated along with everything else.

    That plugin copies everything from your WordPress site, so I cannot see why it wouldn’t include your customizations.

    I would recommend that you ask the creators of the duplicator plugin why it isn’t duplicating your theme options. I really cannot answer as to why it is not working for you as we are not the authors of the duplicator plugin.

    in reply to: Category page title #1279
    Andy
    Keymaster

    Install and activate the Interceptor Child theme (link: https://uxlthemes.com/docs/child-themes/ ), and then in the child theme functions.php file add this code:

    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;
    });

    It is not recommended to add this code to the parent theme functions.php file as when the parent theme is updated, your changes will be lost.

    This code will also remove “Tag:” and “Author:” as well as “Category:” from your archive page titles, and will work with any theme.

    in reply to: How to remove the Default Sorting Drop Down Box? #1275
    Andy
    Keymaster

    You have a plugin installed which is overriding the standard WooCommerce product lightbox.
    Did disabling the plugin I mentioned fix the issue?

    in reply to: Title #1274
    Andy
    Keymaster

    Try this in Customize > Additional CSS:

    .main-header, .custom-post-type-header {
    	margin-bottom: 0;
    }
    in reply to: Header logo re-sizing #1273
    Andy
    Keymaster

    It needs to be wrapped in the claremont_setup() function, so the code would be:

    function claremont_setup() {
    	add_theme_support('custom-logo', array(
    	'width' => '400',
    	'height' => '200',
    	) );
    }
    add_action( 'after_setup_theme', 'claremont_setup' );
    in reply to: Header logo re-sizing #1265
    Andy
    Keymaster

    Look in the functions.php file for the add_theme_support( 'custom-logo' ) function. This contains height and width.

    Recommend to add to a child theme so that your changes are not undone when the theme is updated.

    in reply to: Adding custom link in the logo and Button in the header #1263
    Andy
    Keymaster

    The standard WordPress custom logo function does not work that way.

    in reply to: Adding custom link in the logo and Button in the header #1261
    Andy
    Keymaster

    The logo uses the standard WordPress function so it links to your site home page.

    For the button in header you select the page to link to from the select page option.

    in reply to: Site Title and Tagline Font Size #1255
    Andy
    Keymaster

    You should go into your account here at UXL Themes and copy your license key for Exoplanet Pro.

    In your site dashboard, go to Appearance > Theme License, enter your license key, click on ‘Activate License’ and save.

    You will now be able to update the theme with one click (in a similar way to free wordpress.org hosted themes) in Appearance > Themes.

    in reply to: How to remove page titles from header #1250
    Andy
    Keymaster

    Add this in Customize > Additional CSS:

    .header-title,
    .title-header {
        display: none;
    }

    After adding that code, if you want the header to not have extra vertical padding (so it is same height as logo/menu header) select the ‘Below’ option.

    in reply to: Site Title and Tagline Font Size #1248
    Andy
    Keymaster

    Hi Ivette,

    So sorry about this, it seems the code for this was accidentally deleted from the theme files.

    I’ve put out an update to fix this, please download/update to latest version 1.3.5

Viewing 15 posts - 1,051 through 1,065 (of 1,124 total)