krozero
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Custom Widget area] Conflict with jquery.easytabs.min.jsHi, i’ve fixed that issue in version 1.2.5 and also added new feature for custom widget wrapper. please update the plugin. thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] Dot appearing above widget areaHI, i know this is already fixed. just incase someone have similar problem .
add css targeting your widget ul. ie
//add this line to bottom of style.css
ul{
list-style: none !important;
}or just click advance setting and select div for widget before/ after .
Thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] Editing the Header Widgethi nozahon, you can either add css targeting widget-class or just wrap dynamic_sidebar inside another div and add css targeting that div. i.e
css:.header-right-widget{ width: 100px; float: right; }html:
<div class="header-right-widget"><?php dynamic_sidebar( 'header-widget' ); ?></div>Forum: Plugins
In reply to: [WP Custom Widget area] centering the pluginHello @erenmf, can you please post the link to your page or maybe a block of code of that page?
Forum: Plugins
In reply to: [WP Custom Widget area] Customizing the Widgets areai’m not sure if you mean for whole widget area widgets or just that Recent-Post widget.
if you meant for whole widget in that widget area. then you should set the widget area class ( click advance link and the you will see this http://screencast.com/t/K5tOwBgm ) ,then set the widget class “your-widget-class”. now add css like:
.your-widget-class a{
a:visited{
color: red !important;
}
}if you meant for individual widget in that widget area, then install https://ww.wp.xz.cn/plugins/widget-css-classes/ , set class for individual widget and add css like:
.your-individual-widget-class a{
a:visited{
color: red !important;
}
}Forum: Plugins
In reply to: [WP Custom Widget area] Customizing the Widgets areahi, you can use this plugin https://ww.wp.xz.cn/plugins/widget-css-classes/ to achieve that. set the css class for that widget and add css targeting that widget class.
Forum: Reviews
In reply to: [WP Custom Widget area] not workingHi, i have tested it in wp 4.5.2 and it works fine for me. can you please check if there’s any errors in console or php log? or may be conflict with another plugin scripts. can you try with disabling other plugins ? Thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] Changing Widget LocationHi, you will need to add css targeting that widget area or add class to widget area that move it where you want it to show. aside is just a html tag it won’t do anything itself without css.
Forum: Plugins
In reply to: [WP Custom Widget area] Remove Before/After Tagshi, if you want to get image url only, you can simply register new custom shortcode for that or find suitable plugin that match your requirement. this plugin is Just a widget area generator, it does’t deal with what or which widget inside that area,
Thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] Bug; edit profile page not workingHI, does that error disapear when you disable wp-custom-widget-area plugin?
Forum: Plugins
In reply to: [WP Custom Widget area] inactive sidebar (not used)Hi Filipe, can you try following in the footer where where you are having unwanted sidebar :
<?php if( is_active_sidebar('sidebar-name') ) { ?> <ul class="widgets-container"> <?php dynamic_sidebar('sidebar-name'); ?> </ul><!-- /widgets-container --> <?php } ?>not sure whats going on in your code. may be you have another widget area code defined in your function.php or in your theme related php file. because when you disable “Custom widget area” it automatically disables widget areas registered with “Custom widget area ” plugin.
Thanks,
KishorForum: Plugins
In reply to: [WP Custom Widget area] Different behaviors in the same page and code outputHello Antonio, sorry for delay in reply. this problem has been solved in new version 1.2.2. please update your plugin. thanks!
Kishor
Forum: Plugins
In reply to: [WP Custom Widget area] Widget Title Showing in Code Formor you can just delete that widget area and create new one. there was bug in javascript in previous version which left “Before/After widget” blank after first widget-area creation or update. fixed in new 1.2.2 version. thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] Widget Title Showing in Code FormHello bharion and sfregolina , i’ve fixed your problem in new V 1.2.2 release. please update your plugin and edit the widget area that’s generating that tagless code. please , make sure to follow following steps:
1) edit the widget area which is displaying those tag less codes http://screencast.com/t/mYrcpZkH
2) click on advance button http://screencast.com/t/GhmWUkAtopro and make sure to select “Before/After widget” http://screencast.com/t/aCa5rx2h for that widget area.hope this fix your errors. thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] Custom Widhet Area in the Header issueHello sfregolina, did you manage to fix your problem. i can’t see that error in you page. and i also tried multiple time but couldn’t reproduce it. may be something wrong with your code? can’t tell without looking how and where you paste. let me know if you are still having problem with plugin. thanks!