epicdevspace
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Embedded content breaks theme designHi antoniomc76
Add an !important declaration when specifying the width of the iframe.
For example:
<iframe src="https://embed.spotify.com/?uri=spotify:user:antoniomc:playlist:2wesDZVb0EIHwAg37JdFyl" data-origwidth="300" data-origheight="380" style="width: 531px !important; height: 672.6px;" frameborder="0"></iframe>
Let me know if this works for you.
All the best!
- This reply was modified 7 years, 11 months ago by epicdevspace.
Forum: Fixing WordPress
In reply to: Custom Code Not WorkingHi Daaan26
I highly recommend coding a simple plugin and using a shortcode to output the form.
If you can post your code I will be happy to point you in the right direction.
You can read up on plugin development here
All the best!
Forum: Fixing WordPress
In reply to: link to download original .jpg fileHi
Your uploaded file resides in the wp-content/uploads directory. This is organized by the year and the month of the upload.
All the best!
Forum: Fixing WordPress
In reply to: URL redirect?Hi
You can give https://www.ads-software.com/plugins/quick-pagepost-redirect-plugin/ a go.
All the best!
Forum: Fixing WordPress
In reply to: WooCommerce Product Prices Not Displaying/UpdatingHi
Please provide a link to your site.
Forum: Fixing WordPress
In reply to: insert WP in a html websiteHi
Have you considered using the RSS feeds and formatting that according to your needs?
All the best!
Forum: Fixing WordPress
In reply to: Moved WP from directory to root, all pages 404 error except indexHi
Do you have the option of trying out another ftp client ? I highly recommend Filezilla.
You can backup then delete your current .htaccess and replace it with the default WP .htaccess file.
Forum: Fixing WordPress
In reply to: Moved WP from directory to root, all pages 404 error except indexHi
Are the current links (besides the homepage) pointing to the subdomain?
Have you tried to restore your permalinks to the default setting in Settings->Permalinks ?
Forum: Fixing WordPress
In reply to: Emails not working in wordpressHi
You can try using a plugin like WP Mail SMTP to configure WordPress to use SMTP instead of mail()
All the best!
Forum: Fixing WordPress
In reply to: Site down after domain expired – is the site gone?Hi
You will need to update the domain’s nameservers to point to your hostgator hosting.
After propagation you will be able to see the site provided that the hosting account has been kept up to date.
Please contact hostgator if you need assistance with this.
All the best!
- This reply was modified 8 years, 1 month ago by epicdevspace.
Forum: Fixing WordPress
In reply to: get_current_user_id return 0You may also want to read up and experiment with um_user(); as I am sure there’s a nifty way to call up the user’s info.
it should be um_user($key);
Perhaps someone with more UM experience can chime in ??
Forum: Fixing WordPress
In reply to: get_current_user_id return 0Hi again,
If you want to retrieve the data of the logged in user
um_user(‘ID’); can be used instead of um_profile_id();
Let me know if this works for you ??
Forum: Fixing WordPress
In reply to: get_current_user_id return 0Hi
You should have mentioned you’re using the Ultimate Member plugin.
//This will retrieve the current profile user ID in Ultimate Member $profile_id = um_profile_id();
If you want to display other User info , like the current user login
$user_info = get_userdata($profile_id); $user_login_name=$user_info->user_login; echo $user_login_name;
All the best!
Forum: Fixing WordPress
In reply to: 400 bad requestHi
Can you access your Dashboard?
If so , navigate to Settings -> Permalinks , set this to plain.
Go to your site and try to click on your posts , do you still see the same error?
Forum: Fixing WordPress
In reply to: get_current_user_id return 0Hi
Try
$current_user = wp_get_current_user(); $current_user=$current_user->user_login;
All the best !