MonkimoE
Forum Replies Created
-
Forum: Plugins
In reply to: [GEO my WP] Plan: Ajax member search?Thank you. I already bought and will use it soon.
- This reply was modified 6 years, 3 months ago by MonkimoE.
Forum: Plugins
In reply to: [GEO my WP] Plan: Ajax member search?Hi Eyal… When the plugin will be released?
Still waiitng for it.
Is there will be a demo page?Thank you.
- This reply was modified 6 years, 3 months ago by MonkimoE.
Forum: Plugins
In reply to: [GEO my WP] Plan: Ajax member search?Please add option to search Online user only. Thank you.
Forum: Plugins
In reply to: [GEO my WP] Plan: Ajax member search?Thank youuuu… Well done!!
When will be available? Can’t wait for this…Forum: Plugins
In reply to: [GEO my WP] Needs to import exsiting locations into its new database table?Importer to Geo my WP 3.0 success. but still showing me the notification.
Even I already delete my table from my database as the function detects:
wppl_friends_locator
{$wpdb->prefix}places_locatorSo I need to disable it manually T_T
commented at class_gmw_admin.php line 25:
//add_action( 'admin_notices', array( $this, 'update_database_notice' ) );
Now the Member Locator tab in Import/Export show blank because tables doesn’t exist.
Forum: Hacks
In reply to: How to display the number of posts of each post type on the category page?Hi,
Sorry.. I was wrong. My 1st answer is to display total post in custom taxonomy.
To display total post in regular category:
<?php $args = array( 'post_type' => 'post', //or change to your custom post_type 'post_status' => 'publish', ); $the_query = new WP_Query( $args ); echo $the_query->found_posts . 'post published' ; ?>
put in your template (archive.php / title_header.php)
Forum: Themes and Templates
In reply to: Product font sizeadd custom css in your theme with this:
.woocommerce div.product p.price, .woocommerce-page div.product p.price, .woocommerce #content div.product p.price, .woocommerce-page #content div.product p.price { font-size: 1.5em !important; }
change 1.5 with your desired size
Forum: Hacks
In reply to: How to display the number of posts of each post type on the category page?To display total post published you can put this in your template (archive.php / title_header.php):
<?php echo term_count() . 'post published' ?>
But.. I’m not quite understand with ‘Quote’ and ‘Status’ that you mean.
I think you need tell us your website link.Forum: Fixing WordPress
In reply to: PHP File Redirection 404 ErrorIf you put in root directory where wordpress installed,
how about:<form action=”<?php ABSPATH ?>/mk.php” method=”get”>
It will goes to: https://bdeas.com/mk.php
Forum: Fixing WordPress
In reply to: WordPress.com to Worpress.org domain issuesGreat.
btw, use Lightshot from https://prntscr.com/ for easy sharing image from your screenshot.
because anybody can’t access you /Users/rachelmanning/Desktop/
hehe…Ok. goodluck with your new site.
Forum: Fixing WordPress
In reply to: Page not found – can't log into dashboardDon’t give up.
Are you able to access your cpanel?
You can fix wp-config.php via file manager there.Forum: Fixing WordPress
In reply to: WordPress.com to Worpress.org domain issuesHi, I open thevida.co.uk and got like this:
https://prntscr.com/81h4de
Is it the right website?If you still got the old appearance, just wait in several hours.
Maybe it’s still cached by your ISP.Or you can try to flush your DNS also try to clear browser cache.
Googling it how to flush DNS by your operating system.Forum: Fixing WordPress
In reply to: Page not found – can't log into dashboardseems weird, I check your site..
all error 404 because your site structure is “https://www.marykingphotography.co.uk/newbornbabyfamilyphotographycambridge/…”
instead of
“https://www.marykingphotography.co.uk/…”I think something broke your wp setting.
you need to look at wp-config.php and fix the wp directory there.what plugin you use to add that keywords?
or maybe try to remove that plugin via FTP.Forum: Fixing WordPress
In reply to: How to add text box in the home pagewell, hope this is works. Because I don’t know your template setting.
1. Replace file: /dummy/dummy-layout1.php with this:
<div class="row"> <div class="title"> <h2 class="blue1">Latest Post</h2></div> <div class="row"> <div class="lay1"> <?php if(of_get_option('frontcat_checkbox') == "1"){ ?> <?php if(is_front_page()) { $args = array( 'cat' => ''.$os_front = of_get_option('front_cat').'', 'post_type' => 'post', 'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1), 'posts_per_page' => ''.$os_fonts = of_get_option('frontnum_select').'' ); new WP_Query( $args ); } ?> <?php }?> <?php wp_reset_postdata(); ?> <?php if(have_posts()): ?><?php while(have_posts()): ?><?php the_post(); ?> <div <?php post_class(); ?> id="post-<?php the_ID(); ?>"> <div class="post_image"> <!--CALL TO POST IMAGE--> <?php if ( has_post_thumbnail() ) : ?> <div class=" imgwrap"> <a href="<?php the_permalink();?>"><?php the_post_thumbnail('medium'); ?></a> <div class="ch-item ch-img-1 "> </div> </div> <?php echo '<div class="text-logo">' . get_post(get_post_thumbnail_id())->post_excerpt . '</div>'; ?> <?php elseif($photo = hathor_get_images('numberposts=1', true)): ?> <div class=" imgwrap"> <a href="<?php the_permalink();?>"><?php echo wp_get_attachment_image($photo[0]->ID ,'medium'); ?></a> <div class="ch-item ch-img-1 "> </div> </div> <?php echo '<div class="text-logo">' . get_post(get_post_thumbnail_id())->post_excerpt . '</div>'; ?> <?php else : ?> <div class=" imgwrap"> <a href="<?php the_permalink();?>"><img src="<?php echo get_template_directory_uri(); ?>/images/blank1.jpg" alt="<?php the_title_attribute(); ?>" class="thn_thumbnail"/></a> <div class="ch-item ch-img-1 "> </div> </div> <?php echo '<div class="text-logo">' . get_post(get_post_thumbnail_id())->post_excerpt . '</div>'; ?> <?php endif; ?> </div> <div class=" post_content2"> <div class=" post_content3"> <h2 class="postitle_lay"><a href="<?php the_permalink();?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <?php hathor_excerpt('hathor_excerptlength_teaser', 'hathor_excerptmore'); ?> </div> </div> </div> <?php endwhile ?> <?php endif ?> <?php get_template_part('pagination'); ?> </div> </div> </div> </div>
2. in image attachment you must fill the “Caption”.
example: https://prntscr.com/81gwsaThe text will got from that caption you filled.
3. in file style.css add this in very end:
.text-logo { color: #000000; /* font color is Black */ font-size: 20px; /* increaase or decrease to suit your needs */ font-weight: bold; /* the text will be Bold */ text-align: center; /* Align the words to center */ }
Good luck.
Forum: Fixing WordPress
In reply to: How to add text box in the home page” The “logo” I mean in the above is the the 6 rectangle logos. “
well that’s different story. Sorry for my misunderstood.You have to undo the code you have edited.
For that, It will takes some time. because I will need to test on new wordpress install which I don’t have for now. Sorry. can help you quickly.