krozero
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Custom Widget area] Menu Inserted in Page not Responding to CSSHello, have you already looked inside help tab ? http://screencast.com/t/1LSuRjiz and can you please confirm that you have applied class in shortcode and also check if that class is available in output? or may be some other css is forcing it. did you try adding !important at the end of css ie: list-style: none !important; ? tx!
Forum: Plugins
In reply to: [WP Custom Widget area] What does "post in theme" mean?Hello, you will have to create child theme, copy the header.php from parent theme (Photocrati Pro) to child theme and edit on that.
most of premium theme come with sample child them directory. if not here’s bunch of tutorials on creating child theme https://www.google.com.np/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=child%20theme .
thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] Sizing widget for only 2 columnsi think this is the widget ( http://screencast.com/t/MYW7hdQzR1 ) you mention above, right? i inspect that widget i see that it’s still in the same place ( http://screencast.com/t/e3poousLu ) , right after header. you may want to move that widget down to here ( http://screencast.com/t/ETYAHAlRR ) after two step down inside main-content block.
Forum: Plugins
In reply to: [WP Custom Widget area] Sizing widget for only 2 columnsHI, please see http://screencast.com/t/vK8Yf6vvZ . and you can also use browser inspector to inspect what’s making extra spaces and add css targeting those elements or tag classes in style.css.
tx!Forum: Plugins
In reply to: [WP Custom Widget area] Enabling plugin removes Main MenuHi Ryan, is it still removes main menu? i tried multiple times but can’s reproduce it.
does it removes main menu completely form wp-admin or just removes from site front-end?
actually, This plugin doesn’t creates or deletes menus, it’s just registers menu locations. so can you please confirm if the plugin is up-to-date.
Thanks,
Kishor
Forum: Plugins
In reply to: [WP Custom Widget area] Customizing the Widgets areahi , not sure if the problem is already solved. you can use https://wordpress.org/plugins/widget-logic/ to manage widgets using single widget area at bottom.
Forum: Plugins
In reply to: [WP Custom Widget area] Widget Title Showing in Code Formhi, Sorry for delay in reply. it looks like you are able to fix the problem or replaced with dynamic menu.
Forum: Plugins
In reply to: [WP Custom Widget area] Widget Title Showing in Code Formcan you point out where exactly. i didn’t see any quick links in your site http://screencast.com/t/3MQrcZYd . can you try logging out and see if it appears again . not sure if you are using sort of plugins that generates quick links for logged in users (like page edit links)?
Forum: Plugins
In reply to: [WP Custom Widget area] Widget Title Showing in Code FormHi, can you please confirm the title field for widget is empty http://screencast.com/t/wdXn40A8Q . thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] remove bullets from menuHi Tom,
you’ll need to add a css targeting your menu. have you tried these?
ie
for all list styleul { list-style: none; }or targeting your menu only
.you-menu-class-or-id li{ list-style: none; }tx!
KishorForum: Plugins
In reply to: [WP Custom Widget area] row of text showing up in new widget areahi wpuser131, i create a 3 widget area and place it as you mentioned above. then added text widget for each widget area’s. but i’m not getting any error as you mentioned above. Btw are you using html tags inside text widget? can you recheck if yes. may be there’s extra tags or unclosed tags ? Thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] Sidebar not activated in headerHi
please follow the following steps.
1. http://screencast.com/t/4wnZSHrDVF and press create button then copy the generated code http://screencast.com/t/AOy64TQk.
2. go to theme editor from wp admin panel Appearance -> Editor
3. find header.php from the right file list and click it.
4. now find location where your want to add it in header.php then add <?php dynamic_sidebar( ‘header-top-right’ ); ?>
5. finally add the css in style.css targeting that widget to align the text.top-phone-widgetarea {
color: black; // set text color
display: block;
text-align: right;//align text
}6. add widgets Appearance -> widgets http://screencast.com/t/MCmhohsY2
7. now you should have your widget displaying in header.Hope this helps 🙂
Regards
KishorForum: Plugins
In reply to: [WP Custom Widget area] GET SHORTCODE and GET CODE missingHi, can you please try re-installing the plugin. and is it possible to share screenshot so i can see the problem. is there any errors or warnings etc? Please let me know. Thanks!
Forum: Plugins
In reply to: [WP Custom Widget area] Leaving a "1" after WidgetsHi, if you are using “dynamic_sidebar(…)” code. it may be something wrong in your theme code. “dynamic_sidebar” is a wordpress function https://codex.wordpress.org/Function_Reference/dynamic_sidebar . i have also tested shortcode in page or post, but it’s not reproducible for me. please let me know the steps to reproduce that error or please close the ticket if it’s already solved. thanks!
Kishor
Forum: Plugins
In reply to: [WP Custom Widget area] row of text showing up in new widget areaHI, can you please let me know the steps to reproduce it ? i tried to reproduce but it’s working fine for me. i have tried in both sidebar.php using dynamic_sidebar code and in page using shortcode generated form plugin “Get shortcode”. it works fine. maybe something going wrong within your theme code? thanks!