emahajan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Need a standalone download counter plugin with no frills@unihead this is a custom requirement, I don’t think such plugin exists.
But it’s easy to implement such plugin.
For implementing such plugin, you need to take help of any WP developer.Forum: Fixing WordPress
In reply to: Seeking plugin for warranty returns (NOT Woocommerce)This is your customized requirement, I don’t think such type of plugin exist in WordPress plugin repository.
You can create such plugin with the help of a Plugin developer.
Forum: Fixing WordPress
In reply to: looking for ecard / automatic birthdaycard senderTo send ecard on birthday, one option is to write a cron job which will run once in a day at a specific time.
This cron job will check the date, if it matches with the current date then it will send ecard.Also, to get a facility to send ecard during import of excel, then in this case you need to create a plugin with customized functionality which is very much possible.
- This reply was modified 2 years, 6 months ago by emahajan.
Forum: Fixing WordPress
In reply to: Cannot upload file of 18 mb to WordPress Media LibraryThere are 2 ways with which you can upload the files to the WordPress media library
1. Via FTP
2. By modifying the php.ini file with following configurationupload_max_filesize = 50M
post_max_size = 50M
max_execution_time = 300Let me know if you face any issue
Forum: Fixing WordPress
In reply to: No images showing up in WordPress Dashboard or on website@asyenka that’s great.
Forum: Fixing WordPress
In reply to: No images showing up in WordPress Dashboard or on website@asyenka it’s strange, then where your images gone?
Do you have backup of the same folder, if yes then upload any of the image e.g. in Portfolio page at the bottom this image appears /wp-content/uploads/2014/09/Margaritaville_HomeStyle_Ad-300×300.jpg then on same path upload the image with same name and check it.
Also, for the time being, give full permission to the upload folder and check whether image appears or not.
If still not works then you need to check the apache/server whether It’s allowing to read .htaccess or not.- This reply was modified 2 years, 6 months ago by emahajan.
Forum: Fixing WordPress
In reply to: Switching post title and featured imageYes, it’s possible. You need to customize the respective theme file or template for this.
Forum: Fixing WordPress
In reply to: Listing Products in data-driven dynamic modeFirst in Admin you need to create custom post type with all required details.
Then need to fetch those custom post details on your frontend listing page with required item link.Forum: Fixing WordPress
In reply to: Uploading WordPress – checking server settingsCan you please elaborate more about change of service provider? Do you want to change the hosting?
If you want to change the hosting, then you need to take backup of current website and need to configure same on new hosting. Include to this you need to change the nameserver of new hosting in your domain name registrar account.Forum: Fixing WordPress
In reply to: No images showing up in WordPress Dashboard or on websiteIt seems to be a permission issue. Can you check permission of uploads folder and sub folders?
Forum: Fixing WordPress
In reply to: Unable to log in as administratorIt’s strange, please enable the debug mode from wp config file and check for errors.
If the password value is changing after login attempt then it’s not normal.
Just copy the editor’s account password value and update same at your admin’s password value and then check.
Forum: Fixing WordPress
In reply to: Unable to log in as administratorIf you are able to log in with Editor account and not with Administrator account, and you checked in other browser, then there is strong possibility that you are providing wrong password.
Following are the steps to reset password via PhpMyAdmin:
1. Go to wp_users table.
2. Edit the required Administrator account(might be with user id = 1)
3. In ‘user_pass’ field select function as ‘MD5’ and in value section type your password e.g. 12345678.
4. Click go.Now try to log in via administrator account.
Please check this for reference.
- This reply was modified 2 years, 6 months ago by emahajan.
Forum: Fixing WordPress
In reply to: Special dropdown selector@unicamps2022 I believe there is no such plugin for your requirement.
I can understand that you need a custom solution for above shared details. You need to build solution for above requirement with the help of any WordPress developer.Forum: Fixing WordPress
In reply to: Dashboard Appearance issue after logging inYou should never use nulled plugins on your production website, it might have some malicious code in it which is harmful for your website.
You need to check whether any core or theme files got modified.You need to check the WordPress plugin repository for this. I am not sure whether such plugin available. I think you need to build such plugin by exploring the available WooCommerce hooks and actions, and if you are not a WordPress developer then need to take help from any WP developer on this.