trixee
Forum Replies Created
-
Forum: Plugins
In reply to: [Contextual Related Posts] Recreate IndexThanks WebberZone. Does it also refresh the thumbnails for the related posts?
Forum: Plugins
In reply to: [Contextual Related Posts] Thumbnail location on pages not savingHi WebberZone,
Deleting the plugin and reinstalling it worked. However I had to take a screenshot of the settings so I could remember them, it took a while to set it up again the way I wanted.
Thanks.Forum: Plugins
In reply to: [Contextual Related Posts] Thumbnail location on pages not savingSimilarly, adding a featured image to a page doesn’t render that image as the thumbnail. Instead the first image is pulled from the page.
Forum: Fixing WordPress
In reply to: 404 error on blog posts, using IISI tracked this down to a very strange issue where WordPress didn’t like it if the slug contained certain words, which just happened to be related to the name of the website.
Forum: Fixing WordPress
In reply to: Page not showing all contentalchymyth – thank you! That worked!
Many thanks ??
Forum: Fixing WordPress
In reply to: Page not showing all contentThanks for your help Craig, and sorry for taking so long to reply.
I switched theme to twenty fourteen – no change.
I restored an older version – no change.
I checked the page source – there is no the_content() loop. It’s using the same template as other posts, so I don’t understand how the template itself would be affecting it.
Another funny thing I noticed – the search doesn’t work anymore. I get a 404 with a link to this page: https://www.litespeedtech.com/error-page
I wonder if it’s something to do with my provider.Forum: Fixing WordPress
In reply to: New video not showingIt’s software, not magic. WordPress clearly does recognise it because it’s been showing those videos fine. It just doesn’t show the updated one – why?
Forum: Plugins
In reply to: [Enhanced Media Library] Custom taxonomies settings changes not savingThat fixed it, thanks for your help!
Forum: Plugins
In reply to: [Enhanced Media Library] Custom taxonomies settings changes not savingThanks for your quick reply.
1. After I press Save Changes, my changes aren’t saved for the custom taxonomies.
2. Here is the code to create the taxonomies:
//------------------------- Taxonomies -------------------------------- // hook into the init action and call create_version_taxonomy when it fires add_action( 'init', 'create_version_taxonomy', 0 ); // Create and register a custom taxonomy for product versions function create_version_taxonomy() { // Add new taxonomy, make it non-hierarchical (like tags) $labels = array( 'name' => _x( 'Versions', 'Taxonomy General Name' ), 'singular_name' => _x( 'Version', 'Taxonomy Singular Name' ), 'search_items' => __( 'Search Versions' ), 'popular_items' => __( 'Popular Versions' ), 'all_items' => __( 'All Versions' ), 'parent_item' => __( 'Parent Version' ), 'parent_item_colon' => __( 'Parent Version:' ), 'edit_item' => __( 'Edit Version' ), 'update_item' => __( 'Update Version' ), 'add_new_item' => __( 'Add New Version' ), 'new_item_name' => __( 'New Version Number' ), 'separate_items_with_commas' => __( 'Separate versions with commas' ), 'add_or_remove_items' => __( 'Add or remove versions' ), 'choose_from_most_used' => __( 'Choose from the most used versions' ), 'not_found' => __( 'No version found.' ), 'menu_name' => __( 'Version' ), ); $args = array( 'hierarchical' => false, 'labels' => $labels, 'show_ui' => true, 'show_admin_column' => true, 'update_count_callback' => '_update_post_term_count', 'query_var' => true, 'rewrite' => array('slug' => 'version'), ); //make it available for both pages and posts //register_taxonomy('Version', 'page', $args); register_taxonomy('Version', array('page','post'), $args); } // hook into the init action and call create_product_taxonomy when it fires add_action( 'init', 'create_product_taxonomy', 0 ); // Create and register a custom taxonomy for product names function create_product_taxonomy() { // Add new taxonomy, make it hierarchical (like categories) $labels = array( 'name' => _x( 'Products', 'Taxonomy General Name' ), 'singular_name' => _x( 'Product', 'Taxonomy Singular Name' ), 'search_items' => __( 'Search Products' ), 'all_items' => __( 'All Products' ), 'parent_item' => __( 'Parent Product' ), 'parent_item_colon' => __( 'Parent Product:' ), 'edit_item' => __( 'Edit Product' ), 'update_item' => __( 'Update Product' ), 'add_new_item' => __( 'Add New Product' ), 'new_item_name' => __( 'New Product Name' ), 'menu_name' => __( 'Product' ), ); $args = array( 'hierarchical' => true, 'labels' => $labels, 'show_ui' => true, 'show_admin_column' => true, 'query_var' => true, 'rewrite' => array('slug' => 'product'), ); //make it available for both pages and posts register_taxonomy('Product', array('page','post'), $args); }
Thanks for your help!
Forum: Fixing WordPress
In reply to: Can't switch between editors and tiny MCE disappearedOK, weird. I deactivated some plugins and it fixed, then reactivated them all one by one – all plugins are still activated and admin still works properly. Looks like just the act of deactivating and reactivating fixed the problem.
Forum: Fixing WordPress
In reply to: Uploaded images broken in media libraryI was able to resolve this by assigning Full Control to IUSR.
Forum: Reviews
In reply to: [Step by Step] Good but doesn't go far enoughI think the ability to style the default headings etc would be really helpful, like how the main text editor has “text” mode that allows you to add css. Or an easier way, even.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Import error and database unavailableThanks, but the problem is that I now can’t access the wp-admin that I was migrating to as the database is broken. I need a way of fixing the database first. Your plugin essentially deleted a bunch of tables, which is not what I expected from a migration. It should have just inserted new stuff into existing tables.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Import errorMe too!
Forum: Fixing WordPress
In reply to: Export options missingOh ok, now I feel silly, didn’t realise you had to click for each option! Thank you ??