Vipul Ghori
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Old Domain not redirecting to New DomainHello @afuz2020
you have to follow below step
1. Login to your hosting and update DNS or A record
2. search and replace old domain to new domain link in database
3. Login in Wp- admin-> setting-> reading -> permalinkThank you
Forum: Fixing WordPress
In reply to: Gutenberg Button Creation IssueHello @maryhamphery
did you created custom button blocks for button or are you using default gutenberg block?Forum: Fixing WordPress
In reply to: Images stick with textHello @billgatesboss
you have to write some css for image and text div.
here you can find Example link: https://stackoverflow.com/questions/57232337/how-do-i-position-text-relative-to-the-imageForum: Fixing WordPress
In reply to: RSS feed showing errorHello @rajeevbagra2025
did you do any type of customisation in feed function?Forum: Fixing WordPress
In reply to: SSL certificate confusionPlease update your URLs from
home: https://www.mydomain.com to https://www.mydomain.com
siteurl: https://www.mydomain.com to https://www.mydomain.comOr add these 2 lines in you .htaccess file
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]before # BEGIN WordPress
Or use Really simple SSL plugin to set redirection
Forum: Fixing WordPress
In reply to: Sidebar won’t go after removing get_sidebar from index.php@dsb01
remove every where in php file “<?php get_sidebar(); ?>”Forum: Fixing WordPress
In reply to: Download CSVStep-1: Add this code with init action in functions.php file. (this code is to show export button) function admin_post_list_add_export_button( $which ) { global $typenow; if ( 'post' === $typenow && 'top' === $which ) { ?> <input type="submit" name="jnext_export_posts" class="button button-primary" value="<?php _e('Export Posts'); ?>" /> <?php } } add_action( 'admin_init', 'admin_post_list_add_export_button' ); Screenshot: https://prnt.sc/re4QGfilsCZ4 Step-2: Add this code with init action in functions.php file. (this code is for the download CSV file) function jnext_export_posts() { if(isset($_GET['jnext_export_posts'])) { $args = array( 'post_type' => 'post', 'post_status' => 'publish', ); if ( isset($_GET['post']) ) { $args['post__in'] = $_GET['post']; } else { $args['posts_per_page'] = -1; } global $post; $arr_post = get_posts($args); if ($arr_post) { header('Content-type: text/csv'); header('Content-Disposition: attachment; filename="wp-posts.csv"'); header('Pragma: no-cache'); header('Expires: 0'); $file = fopen('php://output', 'w'); fputcsv($file, array('Post ID', 'Post Title', 'URL', 'Categories', 'Tags')); foreach ($arr_post as $post) { setup_postdata($post); $categories = get_the_category(); $cats = array(); if (!empty($categories)) { foreach ( $categories as $category ) { $cats[] = $category->name; } } $post_tags = get_the_tags(); $tags = array(); if (!empty($post_tags)) { foreach ($post_tags as $tag) { $tags[] = $tag->name; } } fputcsv($file, array(get_the_ID(), get_the_title(), get_the_permalink(), implode(",", $cats), implode(",", $tags))); } exit(); } } } add_action( 'admin_init', 'jnext_export_posts' ); Thank You.
- This reply was modified 2 years, 5 months ago by Vipul Ghori.
Forum: Fixing WordPress
In reply to: Hiding Footing menuHello @jandersoncsis
Style for mouse hover on link.
/* mouse over link */
a:hover {
color: hotpink !important;
}Forum: Fixing WordPress
In reply to: Why can’t use the page slug 1 ?Hello @dannyfoo
here you can see patch for slug
https://core.trac.www.ads-software.com/attachment/ticket/11917/11917-part2.patchForum: Fixing WordPress
In reply to: Hiding Footing menu@jandersoncsis
Do you want to change any specific link or whole website?Forum: Fixing WordPress
In reply to: Hiding Footing menuHello @jandersoncsis
style solution:
footer.footer-style ul.inline-menu {
padding: 15px 0!important;
display: none !important;
}
Note: Please above style in custom css file or add in main template file.Forum: Fixing WordPress
In reply to: Add to Cart ButtonHello @skylinepublications
some conflicts in css style.form.cart button.single_add_to_cart_button, form.cart .quantity, table.variations, form.variations_form, .single_variation_wrap .variations_button
class need to remove css.
if you can remove display:none style then it will show.
check screenshot: https://prnt.sc/xTStBpvv7U4kForum: Fixing WordPress
In reply to: Login problem (Button ‘login’ not responding)Hello @namig555
Something issues regarding google captcha api key error.
check console screenshot.
https://prnt.sc/YlwA8RJk9kkUForum: Fixing WordPress
In reply to: Contact Form 7 – Date Placeholder LabelHello @animoassociates
you can use this plugin for placeholder
https://www.ads-software.com/plugins/date-time-picker-for-contact-form-7/
OR
https://wp-qa.com/contact-form-7-adding-placeholder-to-date-field
you can follow this instruction.Forum: Fixing WordPress
In reply to: Plugin for short courses?@benjacobs04
Okay. I think you have to customise plugin base on requirement. might be that not available any plugin same as your need.
Can you please check this plugin?
https://www.ads-software.com/plugins/course-booking-system/
here is not location selection option but you can ask to any WordPress expert to customise as your need.
More suggestion
https://athemeart.com/blog/woocommerce-course-booking/- This reply was modified 2 years, 6 months ago by Vipul Ghori.