HasanulBanna
Forum Replies Created
-
Forum: Plugins
In reply to: [Grading System Daxxip] [Plugin: Grading System Daxxip] PermissionsHi Joshua,
No it wont lock now,Thank You
Forum: Plugins
In reply to: [Grading System Daxxip] [Plugin: Grading System Daxxip] TagsHi,
You can to add this code your your template.
basically to page.php single.php etcThis code should be inside
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
You can use this template tag
<?php if (function_exists(‘dx_grade_form’)){ dx_grade_form(); }?>Thank You
Forum: Plugins
In reply to: [BulletProof Security] Subdomain is not working with BulletProof SecurityHi,
Thank you for your prompt replay,I cant make it work,
I have tried by installing the plugin on two sites two sites are wordpress too but on same cpanel.the subdomain is working under a folder called work on pub html folder of root site may the plugin restricting on sub folder access no idea.
as it was an urgent matter so i have moved the sub domain site to a separate cpanel and user the plugin there and it work.
Thank You very much!
BannaForum: Themes and Templates
In reply to: A Diffrent Type of navigationHi,
But its not working,, Its seems like complex can you help me?Forum: Networking WordPress
In reply to: Get Recet post from blogDear Ipstenu,
Thank You very much for your suggestion.
Yes It pull thumbnail asFIELD:thumbnail_html
DATA:
<img width=”150″ height=”150″ src=”https://192.168.1.4/tela/banna/files/2012/05/thumb1-150×150.png” class=”attachment-thumbnail” alt=”thumb1″ title=”thumb1″ />But it pull a another thumbnail data i mean a 150*150 image. I want eaither the full size image link or my custom size as per add_image_size(‘latest_thumb_image’,186,186,true);
Is there any way,-Thank You very much
BannaForum: Themes and Templates
In reply to: Display Subpage title and ContentHi
<?php $pages = get_pages('child_of='.$post->ID.'&sort_column=post_id&sort_order=desc&parent='.$post->ID); foreach($pages as $page) { ?> <div class="section" id="<?php echo $page->post_name; ?>"> <h4><a href="<?php echo get_page_link($page->ID) ?>"><?php echo $page->post_title ?></a></h4> <?php echo substr(apply_filters('the_content', $page->post_content),0,110).'....'; ?> </div> <?php } ?>
this code is working on main page if the page has sub page. But i want even on subpage the content same level subpages will be displayed.
(: