akhlesh-nagar
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Health-Center-Lite] simple quotes are escaped byHi
You also replace all place were we use echo like
Find these difference line of code in index-service.php file
line no 22$current_options['service_one_title'];
line no 25echo $current_options['service_one_description'];
line no 33
echo $current_options['service_two_title'];
line no 36echo $current_options['service_two_description'];
line no 44
echo $current_options['service_third_title'];
line no 47echo $current_options['service_third_description'];
line no 55
echo $current_options['service_four_title'];
line no 58echo $current_options['service_four_description'];
And Replace it with below lines of code
line no 22
echo stripslashes($current_options['service_one_title']);
line no25echo stripslashes($current_options['service_one_description']);
line no 33
echo stripslashes($current_options['service_two_title']);
line no 36echo stripslashes($current_options['service_two_description']);
line no 44
echo stripslashes($current_options['service_third_title']);
lineno47echo stripslashes($current_options['service_third_description']);
line no 55
echo stripslashes($current_options['service_four_title']);
lineno58echo stripslashes($current_options['service_four_description']);
Thanks
AkhleshForum: Plugins
In reply to: [Display Widgets] Widgets still showing on every pageHi
I have same problem I want to hide widget from the particular page.
How to hide widget from the page .
Pls help me
Thanks
AkhileshForum: Themes and Templates
In reply to: [Spasalon] Nothing like the demo???Hi @merseybeat
Kindly specify your issue , in which page or section you are facing problem .
We always here for your help.
Thanks
Forum: Themes and Templates
In reply to: [Rambo] Crashed after updateHi
If possible then kindly share your website URL .
So that we can assist you better.
Thanks
Akhilesh
Forum: Themes and Templates
In reply to: [Quality] HeaderHi
Did you have add the below css code into the custom css field .
If no then copy past the below code into the custom css field
.qua-logo { display: none; }
Then click on Save Option Button .
Thanks
Hi
For this open your front-page.php file and Find the below line of code on line no 20 .
<img style="height:450px; width:1200px;" src="<?php echo $current_options['home_page_image']; ?>" class="img-responsive" />
And replace it with
<img style="width:1200px;" src="<?php echo $current_options['home_page_image']; ?>" class="img-responsive" />
Thanks
Akhilesh
Forum: Themes and Templates
In reply to: [Health-Center-Lite] simple quotes are escaped byHi mihai
For this Open your index-service.php file and find these two different line of code .
1 On line no 9
echo $current_options['service_title'];
2 On line no 12
echo $current_options['service_description'];
And replace it with below line of code .
1 On line no 9
echo stripslashes($current_options['service_title']);
2 On line 12
echo stripslashes($current_options['service_description']);
Thanks
Akhilesh
Forum: Themes and Templates
In reply to: [Corpbiz] How can we add multiple slider images on the home pageHi
Sorry for you inconvenience but In the light version of theme we can add one image because WordPress Guideline Doesn’t allow Custom Post type , SO Slider is difficult to implement .
We Provide this feature in our Premium Product . See The Demo LINK
Thanks
Akhilesh
Forum: Themes and Templates
In reply to: [Health-Center-Lite] Add images to Featured SlideHi
I have visit your link And I found featured image .
It show only one featured image doesn’t show on slide image .
In free version of theme the wordpress guideline doesn’t allow slider.
Sorry for your inconvenience .
If you want slider you have to purchase Premium Version LINk
See the Premium Ver DEMO LINK
Forum: Themes and Templates
In reply to: [Quality] Page templatesHi
And if you want to remove sidebar from the page template .
Open the page.php file and find the below line of code
<?php get_sidebar();?>
And Remove it
Thanks
Akhilesh
Forum: Themes and Templates
In reply to: [Quality] Page templatesHi
You can use default page template to add widget on the footer area.
Thanks
Akhilesh
Forum: Themes and Templates
In reply to: [Corpbiz] logo in upper left cornerHi
To show custom logo through option panel
Open header.php file and fine the below line of code on line no 29
if($current_options['text_title'] =="on")
And Replace it with it
if($current_options['text_title'] =="of")
Thanks
Akhilesh
Forum: Themes and Templates
In reply to: [Corpbiz] Corpbiz ThemeHi
To add link on service icon you have to manually add the anchor tag
Follow the given below instruction.
open the index-service.php file , edit the file and find the below line of code on line no 17
<i class="fa <?php echo esc_attr($current_options['service_icon_one']); ?> color_green">
and add anchor tag like
<a href="add you link"><i class="fa <?php echo esc_attr($current_options['service_icon_one']); ?> color_green"></i></a>
this kind of process do for remaining three services .
Thanks
Akhilesh
Forum: Themes and Templates
In reply to: [Busiprof] Duplicate TitleHi
For this Open Your page.php file and Find the below lines of code
`<div class=”blog_link”>
<span><img alt=”webriti” src=”<?php echo $image_uri. ‘/blog_ic.png’ ?>”> <?php the_time(‘M j,Y’);?></span>
<a><img alt=”webriti” src=”<?php echo $image_uri. ‘/blog_ic2.png’?>”> <b><?php comments_popup_link( __( ‘Leave a comment’, ‘busi_prof’ ) ); ?></b></a>
</div> `And Remove it .
Thanks
Akhilesh
Forum: Themes and Templates
In reply to: [Health-Center-Lite] Add images to Featured SlideHi
Kindly share Your Website Link
Thanks
Akhilesh