krozero
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Custom Widget area] No "get code" linkcan’t reproduce!
Forum: Plugins
In reply to: [WP Custom Widget area] Need edit optionHi,
Thank you for your request and sorry for the delay in reply. I had this edit feature listed for next update but was a bit busy lately. Finally got time to work on plugins and released new 1.2 version with a widget area edit option. Please update a plugin or download latest version.Thank you!
KishorForum: Plugins
In reply to: [WP Custom Widget area] Position of multiple widget in pageHI Mao, please follow following steps:
1. http://screencast.com/t/aYupyzVcDAd
<div class="rpwe_widget_container"> <div class="col-3">[cwa id='widget-sx']</div> <div class="col-3">[cwa id='widget-dx']</div> <div class="col-3">[cwa id='ultimo-quadro']</div> </div>2. http://screencast.com/t/iFCULpxN
.rpwe_widget_container .col-3{ float: left; margin: 0 10px; width: 30%; }3. final output should look like: http://screencast.com/t/O6u8V08Ld
Hope this helps to fix your problem.
Thanks,
KishorForum: Plugins
In reply to: [WP Custom Widget area] Position of multiple widget in pageHi, following code may help to fix your problem.
wrap those widget area inside div. i’e<div class="rpwe_widget_container"> [cwa id='widget-sx'] [cwa id='widget-dx'] [cwa id='ultimo-quadro'] </div>then add following css to your style.css
<style> .rpwe_widget_container .widget{ float: left; width: 'as required by desing'; } </style>this should fix it.
Thanks!
KishorForum: Plugins
In reply to: [WP Custom Widget area] Position of multiple widget in pagenot sure if you are trying to do that in template using
<?php dynamic_sidebar(...); ?>
or just using
[cwa id='test']
in editor. if you mean horizontally arrange multiple widget area, above code should work. if you mean to horizontally arrange widgets inside single widget area. following example may be helpful.
using shortcode in editor:<div class="test-widget"> [cwa id='test'] <div>using dynamic_sidebar in template:
<div class="test-widget"> <?php dynamic_sidebar('test'); ?> </div>css for both:
<style> .test-widget .widget{ float: left; width: 'as required by deisng'; } </style>Thanks!
KishorForum: Plugins
In reply to: [WP Custom Widget area] Position of multiple widget in pageHi,
if bootstrap is included in your template. you can use cols classes . i.e<div class="row"> <div class="col-sm-4"><?php dynamic_sidebar( 'widget-1' ) ?> </div> <div class="col-sm-4"><?php dynamic_sidebar( 'widget-2' ) ?> </div> <div class="col-sm-4"><?php dynamic_sidebar( 'widget-3' ) ?> </div> </div>if you are not using bootstrap. you may need to add few css lines to display it ad column.
<div class="row"> <div class="col-one-third"><?php dynamic_sidebar( 'widget-1' ) ?> </div> <div class="col-one-third"><?php dynamic_sidebar( 'widget-2' ) ?> </div> <div class="col-one-third"><?php dynamic_sidebar( 'widget-3' ) ?> </div> </div> <style> .col-one-third{ float: left; width: 33.33%; } </style>hope this helps.
Thanks,
KishorForum: Plugins
In reply to: [WP Custom Widget area] "1" emitted when using code in templateHI, i think it’s not a plugin related. it looks like “1” is generated by some other template codes. and besides the php code that the plugin generates for template “dynamic_sidebar()” is a wordpress inbuilt function https://codex.wordpress.org/Function_Reference/dynamic_sidebar .
as for example i saw there’s another text widget in your site somewhere near the bottom https://codex.wordpress.org/Function_Reference/dynamic_sidebar and there’s no “1” after text widget. so i think something else is generating that “1” at the end. hope this helps.
Thanks,
KishorForum: Plugins
In reply to: [WP Custom Widget area] Customize widgetHI, i guess you have already fixed that. i see address text is already aligned to right. let me know if you have other questions related with this plugin! 🙂 thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] Customize widgetHi, use div tag in advance option http://screencast.com/t/uKfj6A3LE and place the widget area code after “site-branding” div tag. that should fix it. Thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] Black dot in widgetHi, you can use div tag for “Before/After widget” in advanced option http://screencast.com/t/SmJwWPmtEMe or just add `li.widget {
list-style: none;
}` in your style.css file. that’ll fix it.Thanks!
KishorForum: Plugins
In reply to: [WP Custom Widget area] Display problems when using paginationHi Bam Bam,
sorry for delay in reply, you can use https://wordpress.org/plugins/widget-logic/ to control widgets in different pages. hope this helps.
Thanks,
KrozeroForum: Plugins
In reply to: [WP Custom Widget area] inactive sidebar (not used)HI, sorry again about the bug. can you please re update and try again. i’ve fixed it for good and tested twice . please let me know. thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] inactive sidebar (not used)Hi, sorry about that. i forgot to add db update script. fixed in v 1.1.1 . can you please re update and let me know. Thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] No "get code" linkhi, can you please let me know which version of wordpress are you using? or maybe javascript is disabled in your browser? or maybe jQuery conflicts, is there any errors in browser console? normally it should display like http://screencast.com/t/ZPmBY4yEqcCx. thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] Where do you paste code to widgetize your theme?plus check if your dynamic_sidebar( ‘Header’) match with one you get form plugin table after clicking “Get code” link. just copy and paste it. if you type it your self recheck if there’s any mistake like (uppercase, lowercase) etc. tx!