bluedrag
Forum Replies Created
-
Forum: Plugins
In reply to: [Visual Form Builder] Modifying Label TextThanks! This will work.
Forum: Plugins
In reply to: [Visual Form Builder] Modifying Label TextThis is great, what about the Address “sub fields” I mean like, you have the address block in the editor, but when you place it it shows up as several fields on the actual webpage. (like address, postal code, city etc)
Is there any way to modify that text? Quebec language laws are very strict…
Forum: Plugins
In reply to: [Visual Form Builder] Address FieldsThis would be useful to me as well. I have to translate all the labels on my form, and address is the only one im unable to because of this.
help!
Forum: Plugins
In reply to: [mqTranslate] Contact Form 7 TitlesActually I was having this same problem, but just with regular html tags. I’m finding the plugin will duplicate my code, and put the language tags in my post itself. This is extremely annoying and honestly a deal breaker for me. I think I will stick with WP 3.8 and qTranslate, and maybe upgrade/switch to mqTranslate when it works better.
Forum: Plugins
In reply to: [mqTranslate] Contact Form 7 TitlesI would just create two seperate forms for each language, like this
<!–:en–>[contact-form-7 id=”280″ title=”EN”]<!–:–>
<!–:fr–>[contact-form-7 id=”281″ title=”FR”]<!–:–>Each form can send their emails to the same address.
Forum: Plugins
In reply to: [SimpleMap Store Locator] "Edit Locations" wont loadSo I’ve done a bit of research into exactly what my problem is, and I cannot load the “edit locations” page with more then 17 locations/markers inside simplemap…
Forum: Plugins
In reply to: [Contact Form 7] Tracking Radio Button SelectionFor those of you looking to do this, you cannot do it through google analytics, but this plugin works with CF7 and works great
https://www.ads-software.com/plugins/contact-form-7-to-database-extension/
Forum: Plugins
In reply to: [qTranslate] qtrans_convertURL() stopped workingI’ve figured out my problem. Apperantly the “www.” in the URL was breaking it… I’m not really sure why but that is what was happening. I had the “www.” in the URL on my local WAMP development server and it was not effecting anything. Maybe it is a Windows vs Linux problem. I’m really not sure.
Forum: Fixing WordPress
In reply to: Displaying post_title on Category page<?php /** * The template for displaying Category Archive pages. * * @package Toolbox * @since Toolbox 0.1 */ get_header(); ?> <?php global $q_config; ?> <section id="primary"> <div id="content" class="product_gallery" role="main"> <h1 class="cat_title"> <?php include 'incategory.php'; ?> </h1> <?php while ( have_posts() ) : the_post(); ?> <div class="product_thumbnail"> <a href="<?php the_permalink() ?>"> <?php //the_post_thumbnail grabs the post's "featured image" this feature has added theme support in the child theme functions.php ?> <?php the_post_thumbnail('thumbnail', array('class' => 'thumbnail')); ?> </a> <?php //This piece of code figures out the corrosponding post_title of the featured image ?> <p class="post_caption"> <?php echo get_post(get_post_thumbnail_id())->post_title; ?> </p> </div> <!-- product_thumbnail --> <?php endwhile; // end of the loop. ?> <br class="clear" /> </div><!-- #content --> </section><!-- #primary --> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Plugins
In reply to: [qTranslate] Language Tabs for custom fieldsI’ve had the same issue and dealt with it like this: https://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&t=158
You can just create two ACFs for example Description EN and Description FR and use that if statement inside the template to seemlessly switch between the two depending on the active language.
Good luck!
Forum: Plugins
In reply to: [WordPress Google Search] Error 404I’m having the same problem.
Forum: Fixing WordPress
In reply to: Layout code in postsI’ve not started coding yet. I was planning on just taking the toolbox theme and modifying it from there.
Do you have a theme suggestion?
I’m also confused about this. It says here to follow the instructions on the plugin page, but it only gives a list of the features. How do we get this plugin to work? Simple activating doesn’t seem to do it.
Forum: Fixing WordPress
In reply to: Blank Page after saving page/post or activating pluginI fixed the problem, turned out to be a lack of memory in PHP. You can fix it by either modifiying the php.ini file on your server or adding the following line to your wp-config.php file
define(‘WP_MEMORY_LIMIT’, ’64M’);
Forum: Fixing WordPress
In reply to: This symbol "?" is appearing throughout my siteThere are various HTML codes for things like accents and “&” look at this website, it might solve your problem.
https://archive.tlt.psu.edu/suggestions/international/web/codehtml.html