kaushal dip subba
Forum Replies Created
-
Forum: Plugins
In reply to: [Kul Maintenance] Copyright-Link problem@reca26 this has been addressed in the new updates. Please update to the 1.2 version. Also stay tune we are coming up with new changes.
Forum: Plugins
In reply to: [Kul Maintenance] How to increase logo image sizeAny logo size is accepted. you can upload your bigger logo size:
or you can do by adding
.logo img{ width:200px; }
in custom css textarea.
you can change the value to anything you like.thanks
Forum: Plugins
In reply to: [Kul Maintenance] change subject from wordpress@drain0 currently it doesnt support this. but shall be releasing it in next version. just wait for couple of day. thanks
Forum: Plugins
In reply to: [Kul Maintenance] Submit button not working@keved, There is currently no way to integrate it with gravity form however this is noted. might be in next release. but there is a message Thank you between Please leave us a message and the form once the email is send. also please check your spam box for email.
@missbrucelee you are welcome again ??
@dlocc it not a heavy coding there to make a custom marker. as far as i look the code you can add a image upload field and use the image for that ??
happy coding!
Forum: Plugins
In reply to: [Maps Builder - Google Maps Plugin] Custom markeryou are most welcome @missbrucelee
there is always a way for something esp in programming ??
Forum: Plugins
In reply to: [Maps Builder - Google Maps Plugin] Custom marker@cyto i have used custom marker by little tweek in the plugin it self.
what you can do is change the default image marker image that lies inside google-maps-builder\public\assets\img\default-marker.png. if you want custom marker for each location then you add img tag in the field Marker label data and making the default-marker.png image 1 X 1px.
hope this will help you out
Forum: Plugins
In reply to: [Secure Custom Fields] How to Downgrade or Rollbacki think its working fine. but any way you can download zip file from github https://github.com/jazbek/advanced-custom-fields
Forum: Plugins
In reply to: [WP-PostRatings] [Plugin: WP-PostRatings] Newbie- how to make plugin show up?u can put
[ratings]on your post or pages to display the rating.
Forum: Themes and Templates
In reply to: Delete Menubarjuss undo it .. and in the heder.php you put the above code. hope u can make it. or u can change the style of the wordpress. m quit bg so culdnt write you the css. hope will do it when i get free.
carry on .. try to change ur css. use Firebug to test you css directly in your browser.
Forum: Themes and Templates
In reply to: Delete Menubar<?php $defaults = array( 'container' => '', 'container_class' => '', 'menu' => 'Main Menu', 'echo' => 0, 'items_wrap' => '<ul>%3$s</ul>', ); $menu_item = wp_nav_menu($defaults); $menu_item = str_replace('</li>', '</li><li></li>', $menu_item); $menu_item = trim($menu_item); ?> <?php echo $menu_item; ?>
AND CHANGE THE css class eithe in
- or in class container
Forum: Themes and Templates
In reply to: Delete MenubarUSE THIS
Forum: Themes and Templates
In reply to: twentyeleven (child theme) – how to add more footer area widget?LOL.. ??
switch ( $count ) { case '1': $class = 'one'; break; case '2': $class = 'two'; break; -----> case '3': $class = 'three'; break; -----> case '3': $class = 'four'; break; }
CHECK THE BOLD ARROW…
Forum: Themes and Templates
In reply to: Delete Menubarhow much do you know about css. do you have ur custom htnl page you wanna it be.
thanks
Forum: Themes and Templates
In reply to: twentyeleven (child theme) – how to add more footer area widget?in you twentyeleven_child_footer_sidebar_class(999999) function
first of all plz check your code
function twentyeleven_child_footer_sidebar_class() { $count = 0; if ( is_active_sidebar( 'sidebar-3' ) ) $count++; if ( is_active_sidebar( 'sidebar-4' ) ) $count++; if ( is_active_sidebar( 'sidebar-5' ) ) $count++; if ( is_active_sidebar( 'sidebar-6' ) ) $count++; $class = ''; switch ( $count ) { case '1': $class = 'one'; break; case '2': $class = 'two'; break; case '3': $class = 'three'; break; case '3': $class = 'four'; break; } if ( $class ) echo 'class="' . $class . '"'; }
plz check your case.. there are case ‘3’. duplicate.
try out this.
hope it works well for you. ??