HasanulBanna
Forum Replies Created
-
Really waiting for this feature
Fixed this by adding this code.
jQuery("#wpforms-12252-field_96").focusout(function(){ var webUrlUpdate = jQuery("#wpforms-12252-field_96").val().replace(/^https?:\/\//, ''); jQuery("#wpforms-12252-field_96").val(webUrlUpdate) });
Forum: Plugins
In reply to: [Subtitle 360] HTML Validator problemsWhy you use code tag?
Forum: Plugins
In reply to: [Subtitle 360] HTML Validator problemsHi Where you using this code?
You may put the template tag inside a code wrapper ?Forum: Plugins
In reply to: [Subtitle 360] Edits made to the sub title are not being savedI dont see any issues with my default wordpress installation.
Can you check with a default theme activation and let me know?Forum: Everything else WordPress
In reply to: I Can not Add nerw pluginsHi Jan,
Thank you, i appreciate your help. I send a mail to specified email by you let wait what happen.Forum: Everything else WordPress
In reply to: My Old user name Banned?I am up here @jan Dembowsk thank you. ??
Forum: Fixing WordPress
In reply to: Remove debug error reporting in admin paneldefine(‘WP_DEBUG’, false); goes to wp-config.php you done
Forum: Plugins
In reply to: [Subtitle 360] Styling for subtitle not workingHi,
Please note the the funtion echo its left so there may be problem while you concatenate it with a variable.Why you cant style it like this?
<div class=”subtitle”>
<?php the_subtitle() ?>
</div>You an use position absolute and relative to display it above a image ??
Forum: Plugins
In reply to: [Subtitle 360] [Plugin: Subtitle 360] Where do you add the code?This is to add inside a loop.
Please note you cant add php code inside page and post normally.~Ben
Hi iwd82,
Please try following code and let me know is it work ??<?php if (function_exists('the_subtitle') ){ the_subtitle(); }else { ?> single_cat_title(); <?php }?
~Ben
Forum: Plugins
In reply to: [Subtitle 360] Neat plugin – but anyone got an idea for styling?Hi,
Than your fir using the plugin
Please put a div and style it before the function.<div class="subHead"> <?php if (function_exists('the_subtitle')){ the_subtitle(); }?> </div>
Please note the function wont have any styling parameter inbuilt.
Thank You
BannaForum: Themes and Templates
In reply to: Removing Comment Options from PagesRemoved comment code from page.php
If you share your page.php i can edit it for you ??
Forum: Themes and Templates
In reply to: Where's my slider?Some slider only show once you added image to may be more that one image. try with that too
Forum: Themes and Templates
In reply to: correct html commandsHi stever,
its seems like you don’t have default class of image alignment on your theme.Please try to add these at CSS and try
/* Begin Images */ p img { padding: 0; max-width: 100%; } /* Using 'class="alignright"' on an image will (who would've thought?!) align the image to the right. And using 'class="centered', will of course center the image. This is much better than using align="center", being much more futureproof (and valid) */ img.centered { display: block; margin-left: auto; margin-right: auto; } img.alignright { padding: 4px; margin: 0 0 2px 7px; display: inline; } img.alignleft { padding: 4px; margin: 0 7px 2px 0; display: inline; } .alignright { float: right; } .alignleft { float: left; } /* End Images */ /* Captions */ .aligncenter, div.aligncenter { display: block; margin-left: auto; margin-right: auto; } .wp-caption { border: 1px solid #ddd; text-align: center; background-color: #f3f3f3; padding-top: 4px; margin: 10px; -moz-border-radius: 3px; -khtml-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } .wp-caption img { margin: 0; padding: 0; border: 0 none; } .wp-caption p.wp-caption-text { font-size: 11px; line-height: 17px; padding: 0 4px 5px; margin: 0; } /* End captions */