Balasaheb Raut
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sugar and Spice] Contact Widgetcan you see it in sidebar.php or widget?
Forum: Plugins
In reply to: [WooCommerce] woocommerce can't add productok
are you using any woo-commerce addon?Can you see your code any jquery conflicts,( I mean 2 or more jquery files should not be there)
Forum: Themes and Templates
In reply to: [iApp] hyphens under appiconThis issue is with custom wordpress link html content. It can be resolved by custom jquery or javascript.
so here is the function can useful to resolve this issue:
put this code in functions.php file.
function custom_js_new() {
?>
<script>
jQuery(“.apptitle”).each(function() {
if(jQuery(this).html().indexOf(“-“)!==-1){
var s=jQuery(this).html();
jQuery(this).html(s.replace(/-/g, ‘ ‘));}
});
</script>
<?php
}
add_action(“wp_head”,”custom_js_new”);Forum: Themes and Templates
In reply to: [iApp] hyphens under appiconPlease let me know whether it is working or not
Forum: Themes and Templates
In reply to: [iApp] hyphens under appiconGo to:
wp-content/themes/iapp/functions.phpForum: Themes and Templates
In reply to: [iApp] hyphens under appiconplease try with above code. or give me your contact I will explain you
Forum: Themes and Templates
In reply to: [iApp] hyphens under appicon<?php
require_once locate_template(‘/functions/utils.php’);
require_once locate_template(‘/functions/setup.php’);
require_once locate_template(‘/functions/scripts.php’);
require_once locate_template(‘/functions/navwalker.php’);
require_once locate_template(‘/functions/support.php’);
require_once locate_template(‘/functions/customizer.php’);function custom_js_new() {
?>
<script>
jQuery(“.apptitle”).each(function() {
if(jQuery(this).html().indexOf(“-“)!==-1){
var s=jQuery(this).html();
jQuery(this).html(s.replace(/-/g, ‘ ‘));}
});
</script>
<?php
}
add_action(“wp_head”,”custom_js_new”);Forum: Themes and Templates
In reply to: [iApp] hyphens under appiconare you using ftp or direct admin dashboard theme editor?
Please use ftp , In case if anything happen wrong we can undo it.
Forum: Themes and Templates
In reply to: [iApp] hyphens under appiconPlease do not scared. I am here to help you
Forum: Themes and Templates
In reply to: [iApp] hyphens under appiconplease confirm with me before pasting code.
Forum: Themes and Templates
In reply to: [iApp] hyphens under appicongo to bottom of the functions.php file
if last line has
“?>” this tag then paste this code
after “?>” this tag<?php
function custom_js() {
?>
<script>
jQuery(“.apptitle”).each(function() {
if(jQuery(this).html().indexOf(“-“)!==-1){
var s=jQuery(this).html();
jQuery(this).html(s.replace(/-/g, ‘ ‘));}
});
</script><?php }
add_action(“wp_footer”,”custom_js”);
?>
***********************************if last line has no “?>” tag then
use this code :
function custom_js() {
?>
<script>
jQuery(“.apptitle”).each(function() {
if(jQuery(this).html().indexOf(“-“)!==-1){
var s=jQuery(this).html();
jQuery(this).html(s.replace(/-/g, ‘ ‘));}
});
</script><?php }
add_action(“wp_footer”,”custom_js”);
?>Forum: Themes and Templates
In reply to: [iApp] hyphens under appiconYou must be missed php tags in functions.php
Forum: Plugins
In reply to: [WooCommerce] woocommerce can't add productFirst try to deactivate each plugin one by one and check.
Let me know if it is working or not.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Contact WidgetCan you please share the website address?
Forum: Plugins
In reply to: [WooCommerce] woocommerce can't add productok now please share me your screenshot with firebug console.