Ketan Vyawahare
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Updating WordPressHi @bobinaust ,
If you started website in 2016 and never updated it after that, then I will suggest not to update straight away on the live site. I will recommend to clone the current instance on a staging site or on a local server and then run the update that you have. You can check if there is anything broken.
Since 2016, there have been huge updates released in WP regarding the editors etc. so there are high chances of things getting broken.
Also, please ask your designer / creator that if any core changes are made by them to achieve the desired functionality. If yes, then ask what changes are they because once you update the WP, core changes are bound to lost.
Please let me know if you get any query further.
Let me know your response on this!
Forum: Fixing WordPress
In reply to: Email Confirmation ErrorHi @gaurang3101 ,
Have you setup the SMTP server? Do you receive other emails from your site?
Forum: Fixing WordPress
In reply to: Disappeared “Appearance” and “Settings” from menuHi @mguerreiro ,
Please check if you are logged in as an administrator. Also, try adding a new Admin user and try again and see if you can see the respective menus.
Please let us know your response on this!
Forum: Fixing WordPress
In reply to: Custom Note on Customer ProfileHi @invisiblecodeweaver ,
This seems to be a WooCommerce question. It will be great and efficient to put on the WooCommerce forums.
Please let us know if we could help you further!
Forum: Fixing WordPress
In reply to: My website is going to a WordPress logonHi @thepeaceandlovelifestyle ,
It seems you haven’t completed your WordPress site setup?
Please let us know if you have done this earlier.
Forum: Fixing WordPress
In reply to: Fixed Image WrapperHi @zeroseo ,
This seems to be the code from your theme?
My primary guess says the second snippet is to provide the the ‘Back to Top’ button on every page.
I will suggest to put on this question to your theme author to get efficient answer.
Please let me know your feedback!
Forum: Fixing WordPress
In reply to: Shopping cat like buttonHi @kcservices5 ,
https://www.ads-software.com/plugins/yith-woocommerce-request-a-quote/
Please have a look at the above plugin and see if it is helpful to achieve as per your expectation.
Forum: Fixing WordPress
In reply to: Can’t see featured imageHi @yomp2020 ,
Can you please change the theme for a while and check if the featured image appears as expected?
If your answer to above question is yes, then I will suggest there might be some setting in the theme you are using to enable/disable the featured image on the single post page.
Forum: Fixing WordPress
In reply to: How to remove content associated with IP rather than domainHi @leomt ,
Better search and replace does the work only in the database. It doesn’t handle the files.
Maybe the IP address you are getting is hardcoded in the files. I will suggest to search in wp-content/themes or wp-content/plugins where you have added these fonts.
Find the IP address and replace it with the desired domain manually.
It’s searching the files in wp-content/uploads folder so make sure you have the desired font files in uploads/2020/03 folder.
Let me know your response.
Forum: Fixing WordPress
In reply to: How to Use API in WPHi @vinayaksaxena ,
If I am understanding you well, you want to use third party APIs to fetch data and show it on WordPress site correct?
If this is right, then it depends on what you want to do with the data after fetching from the third party.
You can use json data in wordpress.
Please specify your requirement in more details.
Forum: Fixing WordPress
In reply to: WooComerce Randomly Removing All Variations For Some ProdcutsHi @mproject12 ,
Please post this issue on WooCommerce forums. It will be great to have insights from core Woo team.
Forum: Fixing WordPress
In reply to: Can I create a simple form that updates custom user fields?Forum: Localhost Installs
In reply to: Post name permalinks File not foundHi @sunnyflorida ,
Here are the ideal ownership and permission details for .htaccess file:
- Owner: PC user ID (in your case it is mac user id)
- Group: www-data (this is group or user of apache)
- File permissions: 664
Please set these permission once. Then navigate to wp-admin and save the permalink settings once again.
Then see if the issue gets resolved.
Let us know your feedback.
Forum: Localhost Installs
In reply to: Post name permalinks File not foundHi @sunnyflorida ,
Can you please specify the owernship of the .htaccess file ?
- This reply was modified 4 years, 6 months ago by Ketan Vyawahare.
Forum: Fixing WordPress
In reply to: Can I create a simple form that updates custom user fields?Hi @jamesfuorore ,
Have a look at the shortcodes. You can create your own shortcode. See the example below:
function updateCustomFieldCallback(){ ob_start(); //your code starts here to create the HTML form for the field /** * Here you can create an HTML form for adding the checkbox and submit it. * On submit of the form, you can call your function to update user meta. */ //your code ends here $buffer = ob_get_contents(); ob_end_clean(); } add_shortcode('update_user_custom_field', 'updateCustomFieldCallback');
- This reply was modified 4 years, 6 months ago by Ketan Vyawahare.