Forum Replies Created
-
AuthorPosts
-
Hi,
Can you post the link to your website please?
Regards,
JosueHey cassioconsoni!
Do a quick mail() test, create a file with the following contents at the root of your domain:
<?php mail('YOUREMAIL@gmail.com', 'Test', 'This is a test');
Then access it like http://rapadurapuxadaboa.com.br/mail.php, that would send an email to the specified address, if it you don’t get this “test” email then it’s a server-side issue.
Best regards,
JosueHey wendlandm!
Here’s an idea, create the slider you want using the Magic wand tool in any page, copy the generated shortcode.
Open header.php and create a conditional like this (at the end of the file), and with the help of the do_shortcode function we can embed the shortcode previously created:
<?php if(is_page('Blog') || is_single()){ echo do_shortcode("[av_slideshow size='entry_without_sidebar' animation='slide' autoplay='true' interval='5'][av_slide id='2348'][av_slide id='2347'][av_slide id='2346'][av_slide id='745'][av_slide id='315'][/av_slideshow]"); } ?>
This will make it appear in every single blog post and in the main blog page, if you want them to appear in category and archive pages you can add is_archive(), is_category() conditionals.
http://codex.wordpress.org/Conditional_Tags
http://codex.wordpress.org/Function_Reference/do_shortcodeBest regards,
JosueHey!
I used ‘hide-class’ as an example, you’ll need to define your own class.
Best regards,
JosueSeptember 25, 2013 at 4:40 pm in reply to: How can I make the borders of one table transparent? #166150Hello RevolutionGroup!
This CSS will do it:
.pricing-table li{ border: 0 }
Best regards,
JosueSeptember 25, 2013 at 4:37 pm in reply to: white screen after activate theme on fresh wordpress install #166145Hi shrinker31!
Do you have access to your server error log?
Regards,
JosueHello weathertight!
This CSS will do it, add it in the Quick CSS or the css/custom.css file:
.grid-sort-container > div { padding: 20px; }
Regards,
JosueHey!
Be sure you are selecting the ‘1030px’ width option in the Theme Options page, then replace the contents of css/grid.css with this.
Cheers!
JosueHi joe88!
I noted that too, but here’s a trick when it kicks you out of the Edit page page, go back and click the Restore backup link (The backup of this post in your browser is different from the version below. Restore the backup.) that appears on top, then save it, i tested locally and managed to get it working with this code:
<form action='http://www.example.com/website/wp-admin/admin-ajax.php' method='post' class='mymail-form mymail-form-submit mymail-form-0 extern'> <div class='mymail-form-info success'></div><input name='_extern' type='hidden' value='1'><input name='action' type='hidden' value='mymail_form_submit'><input name='formid' type='hidden' value='0'> <div class='mymail-wrapper mymail-email-wrapper'> <input id='mymail-email-0' name='userdata[email]' type='text' value='' placeholder='Email *' class='input mymail-email required' tabindex='100'> <input name='submit' type='submit' value='Subscribe' class='submit-button button' tabindex='101'><span class='mymail-loader'></span></div> </form>
Regards,
JosueHello allegrabillings!
You may need to re-create the function you modified in your functions.php file (in the child folder).
Cheers!
JosueHello!
Apply this code:
#header .sub_menu{ position: absolute; top: 115px; right: 130px; }
Best regards,
JosueHi,
Can you post the link to the page where this table is please?
Regards,
JosueHey!
Try this:
#top.single-portfolio .hide-class{ display: none; }
Regards,
JosueHi taliwalt!
I haven’t experienced any problems so far with your calendar.
Best regards,
JosueHi Kelly!
Check if /config-wpml/config.php exists, if it does, check the config-wpml folder permissions.
https://kriesi.at/support/topic/moving-site-to-another-host/
https://kriesi.at/support/topic/updating-sentence/Cheers!
JosueSeptember 24, 2013 at 4:41 am in reply to: Remove link in titles of blog posts when displayed on one page #165455Hello webWahine!
Removing them for just one page can be time-consuming, however you can use the pointer-events hack:
.page-id-xxx .entry-title a{ pointer-events: none; }
Regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueHey optizign13!
Both page’s sidebar are displaying the same list of categories.
Best regards,
JosueHello!
I’m sorry but that customization is beyond the scope of our support form. If you really need it try hiring a freelancer for the job.
Cheers!
JosueHey Patrick!
Use this code:
div .logo { position: absolute; z-index: 9999; height: 100px; }
Best regards,
JosueHello!
I’m sorry but that customization is beyond the scope of our support form. You could try using a plugin like this one or If it doesn’t fit your needs try hiring a freelancer for the job.
Cheers!
JosueHi,
There should be some sort of JavaScript conflict, can you create an administrator account and send it to me at avia.josue (at) gmail.com?
Regards,
JosueHey yukanl!
Yes, you can use the “contact form” shortcode which can have a dropdown.
Best regards,
JosueHey Andrew!
Hope it works :)
Best regards,
JosueHey!
It doesn’t make smaller because it’s already small, however if you want to shrink it when scrolled you can use this code:
.header-scrolled #header_main .container, .main_menu div > ul > li > a{ height: 50px !important; line-height: 50px !important; }
Change the two ’50px’ for the desired height.
Cheers!
Josue -
AuthorPosts