helldog2018
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 3 level of options on sales pageHi @srd75,
The WP Cost Estimation & Payment Forms Builder can do exactly that and more.
Forum: Fixing WordPress
In reply to: Hide Product Archive pages on Search EngineHi @flicker07,
I am not sure what you exactly want, but the plug-in Smart Arhive Page Remove might do what you are requesting.
Forum: Fixing WordPress
In reply to: Password Admin resetHi @tzeweic,
I don’t understand why the database option won’t work (eventually, all datat is being grabbed from database).
Are you sure you did it the right way?
- Go to Database and browse wp_users
- Select edit on the username you wish to alter
- Delete the password and write a new one. Make sure the function is set to MD5 else the new password won’t be recognized
Forum: Fixing WordPress
In reply to: Can i Add comment function in one page theme ??Hi @choibeomkyu,
If you go to settings –> comments you can enable/disable comments for future posts.
Forum: Developing with WordPress
In reply to: Media widget throws PHP notices and warnings when using SVGHi @benbodhi,
I believe WordPress core isn’t allowing .SVG files because it can’t see height and width and therefore is ‘0’.
Can’t you add something like:if(!isset($meta['width'])){$meta['width'] = 0;} if(!isset($meta['height'])){$meta['height'] = 0;}just to make sure the error isn’t producing on the websites?
I mean, it is just a warning because of the not visible size.
- This reply was modified 8 years ago by helldog2018.
Forum: Fixing WordPress
In reply to: Multiple forms with a different recipients?I prefer Gravity Forms
Forum: Fixing WordPress
In reply to: Meta keyword ProblemHi @johnhendriks,
Did you add this text, including the <meta name=”” content=””>, in your WYSIWYG editor? I don’t think this is working.
Best way to add/edit meta’s of pages, homepage, posts and media is by using the plug-in SEO by Yoast.
Hope this helps.Forum: Fixing WordPress
In reply to: Can i Add comment function in one page theme ??Hi @choibeomkyu,
This service is automatically activated for blog pages. Or do you need this comments somewhere else?
Forum: Fixing WordPress
In reply to: Wavesurfer.js: Cannot Read Property Canvas of UndefinedHi @emilykellymfr,
I believe you are using the plug-in Wavesurfer-WP, and I believe this plug-in is calling for the wavesurfer query on Cloudflare.
After disabling this plug-in, can you test again?And once you know where the fault is (but you still need the plug-in), then you know where to edit the files.
Good luck.
Forum: Fixing WordPress
In reply to: bookmarking specific moments of a videoHi @maxalves77,
I haven’t tested the plug-in, but I think Skip to Timestamp does the trick you are requesting.
Forum: Fixing WordPress
In reply to: Categories VS Menu ItemsHi @stratosmaneas,
You can add categories in your menu if you wish, just like pages.
Go to Appearance –> Menu and select categories just below the pages block.Good luck.
Forum: Fixing WordPress
In reply to: Can i Add comment function in one page theme ??Hi @choibeomkyu,
I do not realy understand exactly what you mean.
For your blog posts you can indeed activate or disable your comments section without a hassle.
Or do you need your comments somewhere else on the website?Or do you need a poll?? Where visitors can give their answer to a question you asked?
- This reply was modified 8 years ago by helldog2018.
Forum: Fixing WordPress
In reply to: menu and header bar disappearedHi @nitehawk,
I see you have loads of problems with the website. Still my offer stands to take a look at the website (Had a webdevelopment company in The Neterlands called Maximum Webdesign). Although it looks like the menu is working now (on desktop and on mobile phones).
Also for the Social Icons plug-in, it seems to be okay (not tested). It has been updated 2 months ago by their developer and got good ratings by the users.
Always make a back-up before installing/deleting plug-ins and/or editing hardcoded files.Cheers.
- 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,
This is due to php settings, they restrict to a certain size.
Add the following to your .htaccessphp_value upload_max_filesize 120M //file size php_value post_max_size 120M php_value max_execution_time 200 php_value max_input_time 200Then try to import the database again.
If succesfull remove the code again.Cheers.