Ravindra Singh Meyda
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Issue with Email Notifications in ForminatorHey @uweys,
You can track your email shoot or not with the help of below plugin.
https://www.ads-software.com/plugins/wp-mail-logging/
Sometime mail shoot but not reached destination address. First you need to track the emaill successfully shoot from mail server.
ThanksForum: Developing with WordPress
In reply to: wordpress theme installation issueHey @sithanya,
You can try with manually install theme by FTP.
You can download theme from below link.
https://downloads.www.ads-software.com/theme/astra.4.8.6.zipWith the help of FTP you can extract the downloaded zip file and extracted folder move on to theme server theme location path and by them admin access you can activate the your selected theme.
ThanksForum: Accessibility
In reply to: Issue with a page error on my Tutor LMS siteHey @zulaika48
Could you provide screenshots or siteurl?
So I can check and provide the solution.Thanks
Forum: Everything else WordPress
In reply to: Daily restaurant menu managed by staffHey @chidoleet,
CPT that means Custom Post Type. By the help of developer you can execute your flow that you like.
Here is the link https://developer.www.ads-software.com/plugins/post-types/registering-custom-post-types/
ThanksForum: Everything else WordPress
In reply to: Daily restaurant menu managed by staffHey @chidoleet,
You can create CPT likedaily-menu
. In this CPT you can add/remove/update the item like menu. Also you can add user role like editor to access CPT item and manage it. So restaurant staff mange the CPT.
ThanksForum: Fixing WordPress
In reply to: Uncaught Error: Class “WP_Block_Metadata_Registry”Hey @sandet,
Incomplete WordPress Files: Ifwp-includes
wasn’t replaced fully or there are corrupt/missing files in the replacement.
Manually Download WordPress Core: Get the latest version from www.ads-software.com.Replace allwp-includes
andwp-admin
files again. Ensure the files are uploaded completely (use an FTP client with logging to confirm this).
Note : Before above step execute please take full backup of your website.
ThanksForum: Localhost Installs
In reply to: Language switcher not showing up on login pageHey @philrules,
The language switcher only appears if multiple languages are installed in your WordPress setup.
- Go to Settings > General in your WordPress dashboard.
- Under Site Language, check if multiple languages are listed.
- If not, click Add Language and install additional language packs from Dashboard > Updates.
Thanks
Forum: Fixing WordPress
In reply to: Image resolution settings no longer workHey @ditchmonkey,
I think you are facing the css issue. I give you example code.
You can change the parent class or inherit class as per your code..wp-caption
Some of users facing image issue after updating the WordPress..wp-caption img{
width : 100% !important;
}Thanks
- This reply was modified 3 days, 2 hours ago by Ravindra Singh Meyda.
Forum: Everything else WordPress
In reply to: Page Navigation on blog page is not workingHey @mith143,
You can try with below code. This code create pagination with link. Also check you elementor template have some features to add paramenter in pagination link. This code work on php template.
<div class="pagination">
<?php
echo paginate_links(array(
'total' => $wp_query->max_num_pages,
'current' => max(1, get_query_var('paged')),
'prev_text' => '« Previous',
'next_text' => 'Next »',
));
?>
</div>Thanks
Forum: Everything else WordPress
In reply to: Page Navigation on blog page is not workingHey @mith143,
I checked url issues and I found the issue with pagination url.
Url pagination url is here https://itechstoreca.com/blog/page/2/ .
Please check url pagination code make above structure. Also check above url and it’s work by default.
Thanks- This reply was modified 3 days, 21 hours ago by Ravindra Singh Meyda.
Forum: Fixing WordPress
In reply to: Photos small, not proportionateHey @dconheels,
In your theme or child theme and last one is your customize setting you can put below css code..wp-caption img{
width : 100% !important;
}Thanks
Forum: Everything else WordPress
In reply to: how to Open image in widgetHey @delboy007,
With the help of jquery and vanilla js you can do this task.Below put into the sidebar
<a href="#" class="image-link" data-image="image.jpg">Open Image</a>
<div class="popup" id="popup">
<span class="close" id="close">×</span>
<img src="" alt="Popup Image" id="popupImage">
</div>Below put Into the css or custom css
.popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
}
.popup img {
max-width: 90%;
max-height: 90%;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
.popup .close {
position: absolute;
top: 20px;
right: 20px;
color: white;
font-size: 30px;
font-weight: bold;
cursor: pointer;
}Below put into the custom js
document.addEventListener("DOMContentLoaded", () => {
const imageLink = document.querySelector(".image-link");
const popup = document.getElementById("popup");
const popupImage = document.getElementById("popupImage");
const closeBtn = document.getElementById("close");
imageLink.addEventListener("click", (e) => {
e.preventDefault();
const imageUrl = imageLink.getAttribute("data-image");
popupImage.src = imageUrl;
popup.style.display = "flex";
});
closeBtn.addEventListener("click", () => {
popup.style.display = "none";
popupImage.src = ""; // Clear the image
});
popup.addEventListener("click", (e) => {
if (e.target === popup) {
popup.style.display = "none";
popupImage.src = ""; // Clear the image
}
});
});I hope this maybe be helpful.
Note : This is static example you can try with dynamic by php code.
Thanks.- This reply was modified 4 days, 1 hour ago by Ravindra Singh Meyda.
Forum: Fixing WordPress
In reply to: Sync Micro ingram product to wordpressHey @asadz,
Please provide screenshot and more details for checking.
ThanksForum: Fixing WordPress
In reply to: some of my sites and themes are not working with the new WordPressHey @hopeklh,
Maybe theme or plugins have outdated code. So in that case needs to update theme and plugins as well.
Thanks- This reply was modified 1 week ago by Ravindra Singh Meyda.
Forum: Fixing WordPress
In reply to: WordPress 6.7 WooCommerce Product Size dropdown errorHey @petepeculiardesign,
Just put below code in your child theme style.css or customize section >> additional css.
.et-db #et-boc .et-l .et_pb_wc_add_to_cart form.cart .variations td.value span:after {
border: 6px solid transparent !important;
}Thanks