Archie Makuwa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I return multiple selected categories slugs?Guys,
I came right – sometimes I am amazed by my smartness:-) It was simply really:
I started by getting the categories as follows:
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); #get the terms $terms = get_the_terms( $post->ID, 'work_categories' ); ?>
In the li tag I simply looped though the selected categories and displayed them for the isotope to abuse – that easy. Now, that will be $50 – thank you very much!
<li class="work_block <?php foreach( $terms as $term ) echo ' ' . $term->slug; ?>" ... </li>
Forum: Plugins
In reply to: [Yoast SEO] When did Gravatar profiles stop working?Hi,
Did you get it right? I just noticed the similar problem on one of our sites this morning…
Forum: Fixing WordPress
In reply to: Display WYSIWYG (Visual Editor) | WordPress PodsHi Scott,
Sorry for the delayed response. I have other fields in the Pods which are:
– Plain text fields
– Url
– ImagesThe above code worked ??
I guess I was tired and paid very little attention to the page I was refreshing…
Forum: Fixing WordPress
In reply to: Cannot login to my siteAndrew Mills.. Thank you!
Forum: Fixing WordPress
In reply to: Return checkbox value in columnThanks Scott!
Forum: Fixing WordPress
In reply to: CSS/* active current category on footer */ ul.footer-cats li.current-cat a{ color: #fff; }
For anyone… should they ever need it
Forum: Fixing WordPress
In reply to: CSS@Alchmyth… I know. I tried that earlier and it did not work.
Many thanks anyway! I just thought there was something I was doing wrong and wanted “second eyes” ??
Forum: Fixing WordPress
In reply to: perma links don't openHow did that happen? Did you update WordPress? Id that is the case, simply head to: Settings | Permalinks | Select Type and Save Changes.
If it doesn’t work, delete your wordpress .htaccess file and try again. Actually, rename it to something else.
Forum: Fixing WordPress
In reply to: Highlight current taxonomy menuHi guys,
Again I am amazed by the power of WordPress. This is how I managed to solve the problem…. with just one line of code (AMAZED).
wp_list_categories('orderby=name&title_li=&hide_empty=0&hierarchical=0&parent=0&depth=0');
If WordPress was a woman, I would consider marrying it…
And this is my css code:
.current-cat{ background-color: #d86f08; }
Forum: Fixing WordPress
In reply to: WP_Query sort by custom filed** shocked by my level of stupidity **
The above query works 100%. I was testing with only one post marked as “featured” and the rest of the post not marked or registered as not “featured”, thus the one returned post.
Basically I had to register on all the posts if they were featured or not and then the ‘orderby’ => ‘yes’ took care of the rest. I now get the posts marked “featured” coming first before all the unmarked posts ??
Forum: Fixing WordPress
In reply to: How do I resize images?Hi guys,
Thank you very much for your assistance. I eventually followed some steps for a reply on: https://podsframework.org/forums/topic/image-resize/#post-173291
Well, maybe it is time to change a hosting provider then…
Forum: Installing WordPress
In reply to: Problema con WP – No veo mi blog/webWordPress is not installed. That is a temporary page and you can delete that and try to re-install wordpress. If you still have issues, you can follow the instructions on the link I posted earlier.
I am not sure what Esmi will recommend…
Forum: Installing WordPress
In reply to: Problema con WP – No veo mi blog/webHi,
The only way to confirm is to FTP to your server and check. Alternatively you can try the manual WordPress installation:
https://www.siteground.com/tutorials/wordpress/wordpress_manual_installation.htm
Forum: Fixing WordPress
In reply to: Should I install install.php againWell, it sounds like one of two things (one thing). You either:
– have lost connection to your database (deleted or the configuration file has been tempered with)Check to see if your database is fine. Check your WordPress configuration file for integrity.