krystiank
Forum Replies Created
-
Forum: Reviews
In reply to: [CGD Arrange Terms] Works greatSame issue. I cannot find the arrange button anywhere. Where is it?
After the upgrade, the site went blank.
I tried the Reset but nothing.
I am going to move the site to different server and see if that helps.
Is it a SSL certificate issue. And how it;s installed?
when I view the site with https at a prefix,
https://www.rce-international.org/I don’t see that the site is verified by.
After the update the page the page URL sometimes breaks the slash between the parent page.
It should be https://www.rce-international.org/donate/credit-card-donate-page/
Many times it displays like this
https://www.rce-international.org/donatecredit-card-donate-page/Another issue is that in Chrome there is this red mark in the browser where HTTPS shows up.
THis is great plugin, I used it on many sites with no issues.
I am just puzzled why it;s not working on this site.
Were you able o fix this? I am having the same issues and cannot find solution for it.
Thanks Tobias,
That’s exactly what I did. The results show full content per page. I have the terms highlighted in the results etc.
The issue here is that the page is so huge that it requires scrolling and looking for the highlighted terms.
What I was thinking instead is to merge all my wine tables into one and give a people option to search within the table using the Table Reloaded Search feature.
Here is my concern. I have about 50 tables built. Some of them holds 200 records some of them just few. What would happen If I have a one bug table with lets say 5000 records.
Is this still going to work efficiently. Am I going to be able to import CSV file with that many records.
Do you see any issues with that many records?
Forum: Fixing WordPress
In reply to: Custom Fields problemThank you so much. It works now.
I spend most of the day trying to figure this out.
It still kind of not making sense to me but it’s working on that’s what matters.
Thanks so much again.
Forum: Fixing WordPress
In reply to: How to display diffrent content based on the meta_valueAwesoe, now how can I use this for such a scenario:
<?php $type = get_post_meta('Product', true); $my_query = new WP_Query('meta_key=Product&meta_value=' . $type); ?>
if meta_value = white, show this content
else if meta_value = brown, show this content
else if meta_value = red, show this content
etc.
sorry, but I simply cannot write it. Can you help me writing conditional statement for meta_value
Forum: Fixing WordPress
In reply to: How to convert post title into a number.how can I display it in the loop?
Would that be correct?
`<?php $my_query = new WP_Query(‘category_name=przekazy’);
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID;?>
<?php echo get_post_meta($post->ID,’incr_number’,true); ?>
<?php endwhile; ?>`Forum: Fixing WordPress
In reply to: Strange error related to PHP Memory Limit and SEO pack pluginI work for web development company and we host this site here. I already addressed this issue to our Network Administrator and he said it might be a memory leak issue in the Wordperss related to the SEO plugin.
Thanks so much, it works now.
I forgot to mention before that I used following to call my variables in echo
<?php $apts = get_post_meta($post->ID, 'Apartment Size', true); ?> <?php $loc = get_post_meta($post->ID, 'Location', true); ?> <?php $price = get_post_meta($post->ID, 'Price', true); ?>
But I took your advice and it works for me perfect.
Thank so much for your help.
Forum: Fixing WordPress
In reply to: How to use Post Tags for Meta KeywordsThanks, I tried it but it did not display anything. It’s just empty.
Forum: Fixing WordPress
In reply to: How to display archive results from one category?Wow, that’s really exciting stuff. I think this would work but I am using
<?php wp_get_archives('type=monthly&limit=4'); ?>
which dynamically displays months.Is there a way to use
<?php wp_get_archives('type=monthly&limit=4'); ?>
with time parameters in query_posts.If I add time now, no matter what I click it will display always results from what I specify in time parameters.
So, my thinking is to hard-code links for months instead of using wp_get_archives and use some kind of conditional statement in my archive.php to display results based on what was clicked.
Forum: Fixing WordPress
In reply to: How to display archive results from one category?This is the code I have in my archive.php file. When you hit a month link, for example march, the results show all the posts under the blog category from few months.
https://www.unlockingthebible.com/blog/
<?php query_posts('cat=18'); ?> <?php while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title() ?></a></h2> <div class="post-info"><?php the_time('F jS, Y') ?></div> <?php the_content_limit(300, ""); ?> <div class="readmore"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php _e("read more"); ?></a></div> </div> <?php endwhile; ?>
Forum: Fixing WordPress
In reply to: How to display archive results from one category?I really appreciate the help. I tried to filter it using query posts but the problem is my results don’t display monthly results anymore, they display all the posts under this category.