helldog2018
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Setting up Woocommerce, problems, and checkout fails…..Hi @susannasolgreen,
1. To wrap the text around your images you could add the following to your style.css
.page-id-162 ul.product_list_widget li {height: 320px;} .page-id-162 ul.product_list_widget img {float: left;}2. That is probably possible, this should be added inside your widget. As it seems you are using a widget on this page.
3. The grey line are breadcrumbs, you can remove those by adding the following line inside your style.css
.single-product .site-breadcrumbs {display: none;}4. This problem accours because it is sending the customers to an https:// link which does not exist (you do not have an SSL certificate). Make sure the customers are proceeding to the casual http://yourlink.com/checkout
Let me know if this helped you out.
Forum: Fixing WordPress
In reply to: Error (SQL query) while importing database in Php My AdminAlso check THIS page to learn how to activate ‘drop table if exists’ when you are firstly exporting your database.
This newly exported database should be imported inside your new database.- This reply was modified 8 years ago by helldog2018.
Forum: Fixing WordPress
In reply to: Error (SQL query) while importing database in Php My AdminHi @hamadesign,
I suppose you installed a new WordPress, eventhough it is a complete new and clean install, it will place tables (empty ones) inside your database.
What I am proposing is to enable the function to delete already existing tables if the tablename is exactly the same (in this case wp_commentmeta).
What you can also try to do is manually remove the empty wp_commentmeta table and then import your database inside the new one. Then it atleast can’t tell you that this table already exists.
It will probably then come with the same issue, only then for the wp_comments table. Because the wp_commentsmeta table is the first table being created after WordPress install (check THIS).
Let me know if this fixed your problem.
- This reply was modified 8 years ago by helldog2018.
Forum: Fixing WordPress
In reply to: Add New Post + Swapping out of Admin roleHave you also tried creating a new administrator account in the back-end?
If that does not work, try to create a new administrator account directly inside your database.Forum: Fixing WordPress
In reply to: Error (SQL query) while importing database in Php My AdminHi @hamadesign,
If you export your database make sure your “Add DROP TABLE / VIEW / PROCEDURE / FUNCTION” is enabled.
This will make sure the table is dropped first before importing the new one.Let me know if this solved your issue.
Forum: Fixing WordPress
In reply to: Default Visual Text Editor Automatically Removes Line BreaksHi @eadwig,
Yup removing the paragraphing does the trick. Good catch and happy it’s solved 😉
Forum: Fixing WordPress
In reply to: Multi level navigationHi @webmaestro66,
I am uncertain as of which theme you are using as you customized the the most part of it (theme is called WHS as in White Horse Surveyors?)
First of all check if a plug-in isn’t interfering with your menu. Disable all plug-ins and check if your menu is still not displaying a multilevel.
If this is not the case, check if functions within your theme are interfering with your menu. For example a depth has been set to something like
$args['depth'] = 2;If so, it will only show a depth of 2 menu’s (the parent and sub menu’s).
If you increase this amount, it will display more menu buttons.Let me know if this helped your issue.
Forum: Fixing WordPress
In reply to: Way to prove Authentic Dates on PostsHi @jennwin,
I can’t find a plug-in to do this straightforward, so you probably have to make sure in functions.php that editing date and time is disabled and not possible anymore.
Add the following code in your functions.php and check if it works (Note: Always make sure to make a back-up of your file in case it doesn’t work).
function deny_post_date_change( $data, $postarr ) { unset( $data['post_date'] ); unset( $data['post_date_gmt'] ); return $data; } add_filter( 'wp_insert_post_data', 'deny_post_date_change', 0, 2 ); function hide_publication_date_elements() { ?> <style type="text/css"> a.edit-timestamp, #timestampdiv {display:none;} </style><?php } add_action( 'admin_enqueue_scripts', 'hide_publication_date_elements' );Forum: Fixing WordPress
In reply to: How can I set English (UK) as defaultHi @dipz40,
Open up your wp-config.php file from SFTP/FTP.
Add the codedefine ('WPLANG', 'en_GB');just before ‘/* That’s all, stop editing! Happy blogging. */’That should do the trick.
Forum: Fixing WordPress
In reply to: facebook icons and tekst lines in pagesHi @fasbakery,
I answered your question HERE.
Forum: Fixing WordPress
In reply to: Need Calendar Plugin with Variable PricingHi @remyoliver,
I think the WP Booking Calendar is your plug-in. Take a look on the website and read the overview carefully before ordering.
Forum: Fixing WordPress
In reply to: Add New Post + Swapping out of Admin roleHi @robroberts,
It sounds like you have issues with you MySQL auto increment and indexes on a couple of tables (or all of them).
Continue with cause and make sure to firstly make a back-up of your database.
Here is a link on how to fix these issues in your database.Let us know if this solved your issue.
Forum: Fixing WordPress
In reply to: Default Visual Text Editor Automatically Removes Line BreaksHi @eadwig,
If nothing helps, can you show me the single-post and custom-post php pages?
Maybe something is wrong with the coding.Thanks.
Forum: Fixing WordPress
In reply to: Image Thumbnails in Category ListingHi @ilovediecast,
I have no idea, but I kept thinking you wanted the thumbnail beside the complete post instead of next to the title.
In style.css on line 1568 add the two following lines to .entry-header
float: right; width: 85%And at the end of the style.css add the following lines
.entry-content {float: right; margin-bottom: 30px;}Let me know if this is what you wanted 😉
Forum: Fixing WordPress
In reply to: menu and header bar disappearedIt’s premium theme. Best I ever used and definitely multifunctional.