dineshkashera
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: failed to open stream: No such file or directory inHello,
Please connect your site using FTP and rename the plugin name “wordpress-seo” and then reload your site. It happend due to plugin automatic updation so please uninstalled plugin from ftp by rename plugin name./public/sites/www.rho-lic.njderoo.eu/wp-content/plugins/wordpress-seo
Rename Plugin name :
/public/sites/www.rho-lic.njderoo.eu/wp-content/plugins/wordpress-seo-old
Thanks
Forum: Fixing WordPress
In reply to: How to delete pictures/links next to header/title of the page?Hello,
You can remove that content from CSS or from your theme settings.Using CSS:
Paste the below css in file /wp-content/themes/smccutchan2012/style.css#socialmedia2{ display:none; }
Using Theme Settings:
Search is any settings for the follow me in your theme option, then disable from there.Thanks
Forum: Developing with WordPress
In reply to: Visual editor in custom widgetHello,
You can create by using wp_editor() function.
To get more help see the below link:
https://developer.www.ads-software.com/reference/functions/wp_editor/Thanks
Hallo,
Vervang alstublieft de onderstaande code uit uw bovenstaande code in het footer.php bestand.<?php /** * The template for displaying the footer. * @package Betheme * @author Muffin group * @link https://muffingroup.com */ $back_to_top_class = mfn_opts_get('back-top-top'); if ($back_to_top_class == 'hide'){ $back_to_top_position = false; }else if (strpos($back_to_top_class, 'sticky') !== false) { $back_to_top_position = 'body'; }else if(mfn_opts_get ('footer-hide') == 1) { $back_to_top_position = 'footer'; }else{ $back_to_top_position = 'copyright'; }
Bedankt
Hallo,
Nee, u hoeft de bovenstaande code niet in een bestand te zetten, ik wil gewoon zeggen dat in uw footer.php bestand u een syntaxfout doet, dwz dat u vergeet om te stoppen als u een semi-colon uitspreekt.
Als u geen idee hebt over php en wordpress dan geef mij uw admin details, kan ik dit oplossen.Als je me vertrouwt.
Mijn e-mail id is [email protected]Bedankt
Forum: Fixing WordPress
In reply to: Auto Add Text Before And After Media ImageHello,
You can get help from the below plugin.
https://sl.www.ads-software.com/plugins/media-post-permalink/Thanks
Forum: Fixing WordPress
In reply to: Add Resturant MenuHello,
You can use the below plugin :
https://www.ads-software.com/plugins/mp-restaurant-menu/
https://www.ads-software.com/plugins/food-and-drink-menu/Here is the list of top 5 restaurant plugin.
https://themegrill.com/blog/wordpress-restaurant-menu-plugins/Thanks
Forum: Fixing WordPress
In reply to: How to display a post on one page, not home pageHello,
You can achieve by using override the action hook.add_action( 'pre_get_posts', 'wp_remove_posts_from_home_page' ); function wp_remove_posts_from_home_page( $query ) { //for Home page query if( $query->is_main_query() && $query->is_home() ) { $query->set( 'category__not_in', array( 2 ) ); } //for travel page if( $query->is_main_query() && is_page('travel') ) { $query->set( 'category__in', array( 2 ) ); } }
Note : Don’t forget to replace 2 category id with your travel category id.
To get more help visit this link https://codex.www.ads-software.com/Plugin_API/Action_Reference/pre_get_posts
I hope it will help you.
Thanks
- This reply was modified 7 years, 4 months ago by dineshkashera.
- This reply was modified 7 years, 4 months ago by dineshkashera.
- This reply was modified 7 years, 4 months ago by dineshkashera.
- This reply was modified 7 years, 4 months ago by dineshkashera.
Forum: Fixing WordPress
In reply to: sollution for my websiteHello ,
You can search your theme according to your need from this link https://codecanyon.net/ and for customize post on site you can use the below plugin https://www.ads-software.com/plugins/wp-posts-master/ .
I hope it will help you in your site developments.Thanks
Forum: Fixing WordPress
In reply to: WP in Subdirectory SSL problemsHello,
To force change the url from http to https, please backup your .htaccess file from wordpress root. and create the new .htaccess file at the root and paste the below code in .htaccess file.<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{ENV:HTTPS} !=on RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L] # BEGIN WordPress RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
To get more help please visit this link : https://designmodo.com/wordpress-https/
Thanks
Forum: Fixing WordPress
In reply to: How to insert data using PHP/WordPress?Hello,
You don’t need to create connection in wordpress before every query because it already done in wp-config.php file at root wordpress folder. you need to use wordpress query structure instead to use php core query.we create query using global object $wpdp.
To insert a row you must create query by use below code
Insert two columns in a row, the first value being a string and the second a number:$wpdb->insert( 'table', array( 'column1' => 'value1', 'column2' => 123 ), array( '%s', '%d' ) );
To get more help, please visit this link
https://codex.www.ads-software.com/Class_Reference/wpdbThanks
Forum: Fixing WordPress
In reply to: Domain & CSS IssueWhen i access this page then it show page not found
https://www.exeid.com/wp-content/themes/exeid/style.css?ver=1.0after update url it is easy to access
https://exeid.robatlas.com/wp-content/themes/exeid/style.css?ver=1.0Please change your all enqueue style and script file.
For get more help please see this link https://developer.www.ads-software.com/reference/functions/wp_enqueue_style/I hope it will help you.
Thanks
Forum: Fixing WordPress
In reply to: Domain & CSS IssueHello,
I have check your site and found that it loads all css file from https://www.exeid.com/
but it must load from https://exeid.robatlas.com. please check your all enqueue style and script file.Please see this link for more details https://drive.google.com/file/d/0B5J0iw3QkoFVT2RwRXl1dmI2N00/view?usp=drivesdk
Thanks
Hallo ,
Controleer alsjeblieft, als u op de regel 13 in het bestand blokkeert
/wp-content/themes/betheme/footer.phpWees er zeker van dat het blok correct is be?indigd.
if (voorwaarde) {
// satingen;
}else{
//uitspraak ;
}Bedankt
- This reply was modified 7 years, 4 months ago by dineshkashera.
Forum: Fixing WordPress
In reply to: Product Page thumnailsHello,
Please check is you upload the product thumbnail from admin side.
For get more help click on the belwo link.https://docs.woocommerce.com/document/adding-product-images-and-galleries/
Thanks