PascalPavan
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] forms not working – yellow errorBuongiorno,
senza visualizzare il backend è impossibile darle una risposta e/o soluzione.
Se ha bisogno mi contatti a
[email protected] (servirebbe poi che venisse creata una username e password per l’accesso al backend)Thank you so much!
Have a nice day =)
Hi,
i click edit on one of my table but i don’t find the option!
Thanks,
PascalHow can i find?
Top http://it.tinypic.com/r/wspfcy/9 (option, modify)
Bottom http://it.tinypic.com/r/syt5iw/9 (option, modify)Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Change color text titleHi!
Thanks for the quick reply!
No, I mean the intestation of the column like
Name Country
Pascal Switzerland
Carl Germany
Max FranceI need to change the color of Name and Country.
Thanks =)
Hi Tobias!
Thanks for your quick reply!I have to change id-123 with the name of the table?
Like id-table1 ?Thanks,
PascalHi thanks for the quick reply!
So i have to go:
-> Plugin
-> Editor
-> TablePress
-> tablepress/views/view-options_custom_css.php
and add
“.tablepress thead th,
.tablepress tfoot th {
background-color: #4f7942;
}” ??but where?
And also, the file is “inactive”:
Modificando tablepress/views/view-options_custom_css.php (inattivo)Thank you
Forum: Themes and Templates
In reply to: [Adamos] Setup fetured slider in the homepage with textSolved =)
Forum: Fixing WordPress
In reply to: WP-LOGIN dosen't work! I can't login!Hi!
I found a solutions myself I have just added this 2 line on wp-config.php
define(‘WP_HOME’,’http://www.federicosoldati.com’);
define(‘WP_SITEURL’,’http://www.federicosoldati.com’);There was a problem with the redirect after you log in.
Forum: Fixing WordPress
In reply to: WP-LOGIN dosen't work! I can't login!But it’s strange.
Yesterday all was work fine!
I tried all steps on the first link…still the download dosen’t work…
Forum: Fixing WordPress
In reply to: Last 3 postI don’t want support for the specific theme because I use also another site where I need help for this trick.
It’s possible to create a code that the resul is:
POST | POST | POSTForum: Fixing WordPress
In reply to: Last 3 postI’m using http://demo.themefit.com/fluid/
I want to display the last 3 post on the upper footer sidebar.
But only in homepage. This is my footer.php
“
</div></div>
<?php if(is_page(145)){ ?> <!– 145 id’s homepage –>
<div id=”upper-footer”>
<?php $recent = new WP_Query(“cat=1&showposts=3”); while($recent->have_posts()) : $recent->the_post();?>
<h3>“><?php the_title(); ?></h3>
<?php the_excerpt(); ?>
<?php endwhile; ?>
<div id=”upper-footer-shell”>
<ul id=”footer-widgets”><?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(__(‘Upper Footer Widgets’, ‘domain-themefit-fluid’)) ) : ?>
<li class=”footer-widget-item”>
<h3><?php _e(‘Footer Widget Area’, ‘domain-themefit-fluid’) ?></h3>
<p>
<?php _e(‘You can add footer widgets to this area from the WordPress admin in “Upper Footer Widgets.”‘, ‘domain-themefit-fluid’) ?><?php echo do_shortcode( ‘[tf_button link=”‘. get_bloginfo(‘url’) .’/wp-admin/widgets.php”]’ . __(‘Add Widgets’, ‘domain-themefit-fluid’) . ‘[/tf_button]’); ?>
</p><?php endif; ?>
</div>
</div><?php } ?>
<div id=”push-lower-footer-shell”></div>
</div><!– end site-wrapper –>
<div id=”lower-footer-shell” class=”primary-color-background”>
<div id=”lower-footer”>
<p id=”lower-left-text”><?php echo tf_lower_left_footer( ) ?></p>
<p id=”lower-right-text”><?php echo tf_lower_right_footer( ) ?></p>
</div>
</div><?php wp_footer(); ?>
</body>
</html>
”