Forum Replies Created
-
AuthorPosts
-
April 29, 2017 at 3:58 pm in reply to: Exoplanet loses personalization after importing the database 3 #1471AndyKeymaster
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.
April 29, 2017 at 10:18 am in reply to: Exoplanet loses personalization after importing the database. #1466AndyKeymasterAs 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.
AndyKeymasterWe’ve also added sidebar on/off/position for the blog index and archives, and thanks again for finding the bug.
AndyKeymasterThanks 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.
April 3, 2017 at 8:38 pm in reply to: When I made a copy and installed on my localhost it lost the personal settings o #1286AndyKeymasterI 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.
AndyKeymasterInstall 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.
AndyKeymasterYou have a plugin installed which is overriding the standard WooCommerce product lightbox.
Did disabling the plugin I mentioned fix the issue?AndyKeymasterTry this in Customize > Additional CSS:
.main-header, .custom-post-type-header { margin-bottom: 0; }
AndyKeymasterIt 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' );
AndyKeymasterLook 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.
March 21, 2017 at 8:26 am in reply to: Adding custom link in the logo and Button in the header #1263AndyKeymasterThe standard WordPress custom logo function does not work that way.
March 21, 2017 at 7:22 am in reply to: Adding custom link in the logo and Button in the header #1261AndyKeymasterThe 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.
AndyKeymasterYou 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.
AndyKeymasterAdd 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.
AndyKeymasterHi 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
-
AuthorPosts