Yeshan Perera
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to crate a logo upload option in twentytwelve WP ThemeYes, Your idea also good. I accept that. But, I create a custom upload option page by editing function.php page. So many articles I found. I think it will also help for someone who wants. Use the below links
https://wp.tutsplus.com/tutorials/creative-coding/quick-tip-create-a-wordpress-global-options-page/
https://www.onedesigns.com/tutorials/how-to-create-a-wordpress-theme-options-page
https://speckyboy.com/2012/12/05/custom-options-page/
https://wp.tutsplus.com/tutorials/theme-development/create-a-settings-page-for-your-wordpress-theme/
Thanks in advanced
Forum: Fixing WordPress
In reply to: How to crate a logo upload option in twentytwelve WP ThemeThere have no option in
twentytwelve WP Theme
for that Mr.Hartmutnz. That’s why I want help from yours.Forum: Fixing WordPress
In reply to: Nimble Portfolio Firebug ErrorIt’s not the fault on that plugin. Need to update Lava Lamp JS files correctly.
Thanks in advance.
Great plugin!
Forum: Plugins
In reply to: plugin needed for migration…i thinkHi! robthemiller,
I’m using WP-Migrate-DB Plugin It’s awesome. You can use it. There have tutorial video also.
Thanks in advanced.
Forum: Plugins
In reply to: [Portfolio Media] Set New Media Link 404I have some error. When I click on set new media link this will pop up box like this
Not Found
The requested URL /wp-admin/media-upload.php was not found on this server.
What will do?
I’m using WordPress 3.6.1
Forum: Fixing WordPress
In reply to: How to show all pages featured image in home page?I think no one here to resolve this problem.
Forum: Fixing WordPress
In reply to: How to show all pages featured image in home page?I have static home page in my wordpress site. And I’m working with my own theme.
I create another Example image for make you easy to help me here. Please find this….. Link to Example Image.Thanks My Friends!
Forum: Fixing WordPress
In reply to: How to show all pages featured image in home page?I’m working with my own theme. I have static home page. And now I want to show my other 4 pages inside my homepage as a link. And my other home pages have featured image. So, Now I want to show those 4 featured images inside my home page. Please help here. I just show that above post my example link. Please see that and give me proper answer guys. Thanks!
Forum: Plugins
In reply to: [Jigoshop] how to create login page in jigoshop plugin wordpressThanks for help guys!
Forum: Plugins
In reply to: [Jigoshop] Can I send email using Jigshop plugin?I fixed it my self. Their have option for it. Thanks Jigshop!
Forum: Plugins
In reply to: how to show 4 catalogs in jigoshop plugin wordpressI resolved it my self….
Thank you WordPress Members
Forum: Themes and Templates
In reply to: What is the good way to create online store web site?Do you know any free template for my work?
Forum: Themes and Templates
In reply to: What is the good way to create online store web site?Thanks friend varkeychaya. I try to use that. But, I used Woo Commerce plugins. Those are very heavy and need to use paypal or online methods. But, I’m looking one of can buy online but, only cash on delivery.
When Customer buy one or two. Email will contact buyer and seller using plugin.
I think you understand now
Forum: Themes and Templates
In reply to: Can Display specific cat in page content?Hey! Bro!
I’m just late to reply! You did ur job great. After all, I’ll hope this will helpful for every finders. We do it good.extract(shortcode_atts(array('cat_id' => 'default','display_format' => 'left'), $atts)); $args = array( 'numberposts' => 100, 'offset'=> 0, 'category' => $atts['cat_id'] ); $myposts = get_posts( $args ); $html = ''; //print count($myposts); if(count($myposts)>0){ foreach( $myposts as $p ){ $feat_image = wp_get_attachment_url(get_post_thumbnail_id($p->ID)); $html.= '<div class="blog_set">'; $html.= '<div class="description"><img src="'.$feat_image.'" width="150" height="100" align="'.$atts['display_format'].'"/><div class="title">'.$p->post_title.'</div>'.$p->post_content.'</div>'; $html.= '</div>'; } print $html; }
this my code finally that I develop for my site. If use that plugin, No need to customize function.php. In fact those code for that plugin, Then we can call our shortcode any page or post.
In my coding we just need to put
[myblog cat_id="2" display_format="left"]
OR
[myblog cat_id="2" display_format="right"]
we can simply change cat_id, and display_format left or right. It calls for the class align in my code.Thanks for help.
Forum: Themes and Templates
In reply to: Can Display specific cat in page content?Thanks! I’ll try this. Anyway! Do you know how to use ‘shortcode Exec PHP plugin’? I think it will easy to use. We don’t need to write function so far. Try to use it. And give it to me.