So I’m following the example given here (which I modified to only blur, no watermark), to make a blurred image in WordPress on upload. The problem is, that if the uploaded file is the exact same size, or smaller, than the set size, then WordPress will not generate an image, and hence no blurred one will be made. I tried
Tag: wordpress
Keep query string for external urls
A user can be sent to the main website by some referral id, using a query string: And when they click on a link to a login area, this query string must go with that external link: I am working with wordpress, so I cannot append ?ref=<?php echo $_GET[‘ref’]?> to that link. I have already changed .htaccess to: Every link
Removing the (0) on the WooCommerce Reviews Tab
I’ve succeeding in removing the (0) on the Reviews tab heading when there is no reviews. In marketing – it’s probably best practice to not show that a product has 0 reviews. Here is the code that I …
WordPress – List Categories Limit
I want to ask something which I don’t have any idea if its possible or not. I will show you first as html to explain what I need.
Can I merge two different wordpress themes and use it as one website?
Problem We are planning to create a small community directory website with our community business listings, events and some useful articles. No single WordPress theme is offering all 3 features in one theme. Thoughtful Solution We thought to buy one theme for listing, one for events and one for articles and somehow make one website. Question Is it possible to
Check if a User Has a Gravatar [WordPress]
Thanks Rene Korss for helping to resolve the issue almost and be there every time to reply in discussion. I want to check if the user who has posted comment is having an avatar or not? If user has avatar (means having gravatar account) show gravatar avatar else show image which I have defined in else portion. Any help would
Extract shortcode parameters in content – WordPress
Think about a post content like below: I have a shortcode that takes 3 or more parameters. I want to find out how many times the shortcode is used at the content and its parameters in an array like, I need to do this in the_content filter, wp_head filter or something similar. How can I do this ? Thank you,
Maximum upload file size not reflecting to phpinfo()
My problem is that when I check to wp-admin/media-new.php I see Maximum upload file size: 8 MB. Now I change the php.ini located at /usr/lib/php.ini I change the upload_max_filesize to 64M and post_max_size 64M. Then when I checked back to wp-admin/media-new.php it is now ‘Maximum upload file size: 15M’ it should be 64M I even try following this http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/ but
Should I place my navbar before or after the “ tag when customizing a WP theme?
I am customizing a WP theme by making a child theme. I am placing a navbar from Bootstrap into the header.php file in the child theme directory. However, I’m not sure where to place the navbar code. I can place it both before and after the <body> tag successfully (as in, the navbar shows up just fine no matter which
Create a simple page redirect system in WP based on IDs
What I’m trying to do is to have my students enter their name (assigned code) in a field and once they click the “Go” button they will be redirected to their page. I’m trying to do this in …