Milimo Emmanuel
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Image Block and TextHi @moon7deaf ,
To ensure the text wraps around the image in WordPress even when the text exceeds the image height, you can apply custom CSS to modify the default behavior. WordPress’s alignment settings may not always handle text wrapping consistently when dealing with larger amounts of text. Here’s a solution using CSS to force the text to wrap around the image properly:
- Go to Appearance > Customize in your WordPress dashboard.
- Navigate to Additional CSS, where you can add custom CSS.
- Add the following CSS code:
img.alignleft, img.alignright {
float: left; /* or right if the image is aligned right */
margin-right: 15px; /* Add space between the image and the text */
margin-bottom: 15px; /* Optional: space below the image */
}
img.alignright {
float: right;
margin-left: 15px; /* Space between text and image on the left */
margin-bottom: 15px; /* Optional: space below the image */
}
p {
clear: none; /* Prevents text from dropping below the image */
}This will ensure the image remains aligned to the left or right, and the text will wrap properly even when it exceeds the height of the image.
Forum: Fixing WordPress
In reply to: Automated payment request dateHello @sandraorkney ,
Yor website is running accomodation using the WP Booking System plugin. Kindly get in touch with them to help you change the days. You can also get a developer who is conversant with the plugin to help you out.
Forum: Developing with WordPress
In reply to: Cannot upload WMA files in WordPress pluginThat will depend with your host.
Forum: Developing with WordPress
In reply to: Cannot upload WMA files in WordPress pluginHey @chcw,
The code you’ve written should allow the upload of.wma
files by adding the correct MIME type. However, some WordPress configurations, web hosts, or even certain server security settings (like Apache or Nginx) may block certain file types from being uploaded regardless of the MIME type being allowed.- Ensure that the MIME type you’ve set for
.wma
is correct. Instead of'audio/x-ms-wma'
, try'audio/wma'
as well to see if this resolves the issue. - Try to check if your host has .wma extension, and if it has been enabled.
- Some security plugins can disable this if you have them, if the two methods above do not work, try to disable some security plugins, if any.
Hope this helps!
Forum: Fixing WordPress
In reply to: Logo was missingHello @immyj001. I can see your logo just fine. Are you able to see the logo in incognito mode?
Forum: Fixing WordPress
In reply to: I fear I’ve lost my blog…Hello @ifiperis . My apologies you lost your content. I am not sure many hosts keep content if your hosting was not renewed for a while. Most of them delete your data after seding emails or after your grace period ends. I would recommend checking to see if you had any backups for the site. More so, you can check and see if you have a backup with Jetpack. You ca as well check this with the Jetpack Plugin support forum
Forum: Reviews
In reply to: [WC Multiple Email Recipients] Had to install SMTP plugin for this to workThank you for your response @conschneider. I was out of office. I use Mailpoet as a sender, and the plugin still does only send one email to the admin for new orders. Normally WC sends to more than one recipient to admins for new order mails, but this has not been the case with me.
Forum: Reviews
In reply to: [WC Multiple Email Recipients] Had to install SMTP plugin for this to work@conschneider, not my thread, just related. I have seen SMTP issues which you were able to help. Will the plugin have any issues with mailpoet as the sender?
Forum: Everything else WordPress
In reply to: Start Play video in full screenKindly note we are unable to see your post unless you publish it. Only those with admin rights will see your post as a draft.
Forum: Everything else WordPress
In reply to: Start Play video in full screenHello, your link does still not work.
You will need to ensure the alignment of the video is set to full width under the alignment to achieve this.
Forum: Everything else WordPress
In reply to: Post Categories not showing in my DashboardHello @amyripplenami,
Which theme are you using?
Forum: Everything else WordPress
In reply to: page title not chaningHello @cplotczyk,
Have you made sure to have updated the url as well? The url of the pages does not update automatically when you change your page title. You will need to edit it. When editing the page, you should see the page url on the right hand side. click on it and edit its permalink.
- This reply was modified 10 months ago by Milimo Emmanuel.
- This reply was modified 10 months ago by Milimo Emmanuel.
Forum: Everything else WordPress
In reply to: Start Play video in full screenHello @usvellas,
I hope I understood your question. Depending on the editor you are using, most of them allow one to add a link to an icon, in this scenario the play button. You will add a link to it and it will play when someone clicks the button. Having a video in full screen will require you to set the video section to a full page. I hope this helps.
Also, please share links to your site without the admin rights (without wp-admin).
Forum: Everything else WordPress
In reply to: Alt tag Yoast SeoHi @obirama
Review Your Alt Tags:
- Double-check the spelling and capitalization:?Ensure your keyword phrase is spelled correctly and matches the case used in Yoast’s analysis.
- Verify punctuation:?Sometimes special characters like hyphens or apostrophes can throw off Yoast’s analysis.?Use plain text with spaces to be safe.
- Confirm complete phrase:?Make sure the entire keyword phrase is present in the alt tag,?not just parts of it.
Check Yoast Settings:
- Adjust minimum keyword density: Try lowering the minimum keyword density requirement in Yoast’s settings. This will give you more flexibility with your alt tags while still considering keyword relevance.
- Exclude specific images:?If certain images don’t directly relate to your main keyword phrase,?you can exclude them from Yoast’s analysis through the “Advanced” settings in the image block.
Hope that helps. Kindly note there are other suggestions as well, not limited to the above.
Forum: Requests and Feedback
In reply to: Woocommerce Cancelled Order, Payment Cancelled by PaypalHello @mikeiz. A canceled order is an order not completed and will show on the WooCommerce orders page, but that transaction did not go through. Your customer will need to order again for the transaction to happen. Remember, even if I go to your site and order, complete filling every detail except payment, you will receive an order notification of my purchase, but canceled as I did not complete the payment.
However, if the client was deducted from the cancelled order, then you will need to follow up with PayPal and the bank.
Yes, a customer will be notified if you have set this feature under WooCommerce settings. However, you can also send another email from your order page.
Hope this helps!