jomarlipon
Forum Replies Created
-
Forum: Plugins
In reply to: [Woo Add Empty Cart] empty cart button in widgetHi,
That’s a good idea. By the next update, the plugin will be support widget. Please bear to the next update.
Regards
Forum: Plugins
In reply to: [Woo Add Empty Cart] Suggestion and help neededHi,
Thanks for the suggestion. I will implement the code as soon as I could. I will update the plugin once I have free time by this month.
Forum: Fixing WordPress
In reply to: Licensemark as resolved.
Forum: Fixing WordPress
In reply to: Removing the nav bar from specific pagesHi,
If you mean the menu items on the right before search icon.
Use this code:
.page-id-26267 nav { display: none !important; }
If you mean the whole header
.page-id-26267 header { display:none !important; }
Forum: Fixing WordPress
In reply to: how to add an horizontal line to my headerCan you please put your URL here?
Forum: Fixing WordPress
In reply to: wordpress database errorsHi
Yes. If the database crash out of the sudden. The server is down and will be back soon as the server solved it.
Regards,
Jomar jomarph.comForum: Fixing WordPress
In reply to: Can not log in to the admin panelHI.
This probably cause that you already reached the disk space limit.
Please check and get back.Regards,
JomarForum: Fixing WordPress
In reply to: Displaying a page by tagsHi CharlotteBarber,
Since this code is php
Please don’t forget to put <?php at the beggining and ?> at the end. So the code will be<?php query_posts( 'tag=yourtag' ); while ( have_posts() ) : the_post(); the_title(); if ( has_post_thumbnail() ) { the_post_thumbnail(); } endwhile; wp_reset_query(); ?>
Forum: Fixing WordPress
In reply to: How do I remove the border around this one imageHi,
That is good for now but it will be redundant soon. Since everytime you put upload the image and don’t want border you will need to put style=”border:none” everytime.
Add this code `.img-border-black {border: 3px solid #000;}
.img-no-border{border:none;} ` to your css file.Regards,
Forum: Fixing WordPress
In reply to: Displaying a page by tagsHi CharlotteBarber,
Try to put this code where do you want to display the post
query_posts( 'tag=yourtag' ); while ( have_posts() ) : the_post(); the_title(); if ( has_post_thumbnail() ) { the_post_thumbnail(); } endwhile; wp_reset_query();
Try this!
Forum: Fixing WordPress
In reply to: How do I remove the border around this one imageCreate a separate class for the image with border and image without border.
Sample.
Image with Border
– I will create class name img-border-(color)
So I will have this css code:
.img-border-black {border: 3px solid #000;}
In HTML code,
<img src="url of the image" class="img-border-black" />
Image without border
– create another class name img-no-border
The css code will be
.img-no-border{border:none;}
Hope this helps. If you need clarification.
Forum: Fixing WordPress
In reply to: Licensethanks.
Forum: Fixing WordPress
In reply to: homepage permalinkCan you take a look your .htaccess? and commment what’s inside the .htaccess file
Forum: Fixing WordPress
In reply to: changing footer widget text color#ffffff is the hexcolor
Forum: Fixing WordPress
In reply to: Change menu on loginIf the user login try this code
<?php
if ( is_user_logged_in() ){
wp_nav_menu(array(‘menu’ => ‘loginmenu’));
}
else{
wp_nav_menu(array(‘menu’ => ‘publicmenu’));
}
?>loginmenu and publicmenu is the slug of the menu.
Reference: https://codex.www.ads-software.com/Function_Reference/wp_nav_menu