Archie Makuwa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to add outside form into pageHi,
I think it’s best you contact the Smartsheet for support. It looks like their forms are protected. Alternatively you can create a similar form yourself – I didn’t get to see the form, I got an error message.
There are a few WordPress plugins you can use to generate forms of any type. Try Contact Form 7.
Forum: Fixing WordPress
In reply to: Run WordPress loop within a loopThere was no need to run a loop within a loop on the single page. I used the formula below:
<?php $terms = get_the_terms( $post->ID, 'symptoms_cat' ); foreach ( $terms as $term ) { $x = $term->name; } ?> <!-- Execute loop --> <?php query_posts( array( 'post_type' => 'symptom', 'category_name' => $x, //'category_name' => '', 'posts_per_page' => 99 ) ); ?> <ul class="symptoms-list"> <?php while (have_posts()) : the_post(); ?> <?php $symptom_img = get_post_meta($post->ID, 'symptom_image', true); $my_images = $symptom_img['guid']; ?> <li> <a href="<?php the_permalink(); ?>"> <img src="<?php echo $my_images; ?>" /> <br /> <?php the_title(); ?> </a> </li> <?php endwhile; ?> </ul>
Any questions or queries, holla back!!
Forum: Fixing WordPress
In reply to: Difficulty with post urlWhen you create the webdesign-3 page (either a normal page or a custom post type), you must select “Cases” as the parent on the right hand side of the page.
If that is a post, then you need to update your permalinks.
Forum: Plugins
In reply to: [Really Simple CAPTCHA] Enabling Captcha Breaks Contact Form 7I had to abandon ship. The site is also hosted on a Windows platform _ that could be the problem.
I had to cook-up my own custom maths captcha. It is not really resolved – but I am marking it as resolved.
Forum: Fixing WordPress
In reply to: Font size on everything changed suddenlyYou have probably reduced your browser zoom. If on Windows, press: Ctrl (and) + (plus sign multiple times).
or simply press Ctrl (and) 0
Forum: Fixing WordPress
In reply to: Pull and do specific shortcode as post excerptPerhaps this can aid: https://www.ads-software.com/support/topic/adding-an-excerpt-to-a-page-with-shortcode
Forum: Fixing WordPress
In reply to: HTML code appears on all the pagesWhat’s your url?
Forum: Fixing WordPress
In reply to: Include custom meta boxes in the search without plugingsDid you ever come right mate?
Forum: Plugins
In reply to: Pods Framework Taxonomy not linkingThank Josh… I ended up taking a different route all together. It works, but not how I initially invisioned it.
Not quite resolved – but will play around until I get it right.
Forum: Fixing WordPress
In reply to: Footer Menu has no IdThanks Andrew… You’re a LEGEND!
That was really easy… ??Forum: Fixing WordPress
In reply to: Footer Menu has no IdOkay, ignore that please (long day). Is there a way to get an id on to the home menu?
Forum: Fixing WordPress
In reply to: Menu description theming[ CLOSED ]
Forum: Fixing WordPress
In reply to: Menu description themingThank you for the reply gentlemen, I am currently waiting for support from the theme author. I urgently had to work on a site making use of the theme and I couldn’t figure out how the menu description has been styled.
It’s Friday – Good weekend gentlemen and hopefully I will have an answer on Monday
Forum: Fixing WordPress
In reply to: Menu description themingHehehe,
No, I want to style the menu description:
<strong><a href="https://localhost/excelPrint/">Home</a></strong>
The Menu Display:
Home
– Starting point (this text appears right below the menu) and it is what I want to style.Forum: Fixing WordPress
In reply to: My Permalink not work in goddy domainDid you check the .htaccess file permissions. It could be that the file changes are not being overwritten. You can delete the old .htaccess file (back it up first) and follow MediaX’s instructions.