creativepassion
Forum Replies Created
-
Email sent. Love your work.
Thanks for the awesome fast (& free) support!
This worked on all columns, EXCEPT the first one (words were still truncating down to one letter).
.tablepress span {
word-break: normal;
}
.tablepress-id-24 .column-1 {
width: 130px !important;
}
.tablepress-id-24 .column-2,
.tablepress-id-24 .column-3,
.tablepress-id-24 .column-4,
.tablepress-id-24 .column-5,
.tablepress-id-24 .column-6,
.tablepress-id-24 .column-7,
.tablepress-id-24 .column-8 {
width: 85px !important;
}But, as soon as I changed width to min-width, it worked!
.tablepress span {
word-break: normal;
}
.tablepress-id-24 .column-1 {
min-width: 130px !important;
}
.tablepress-id-24 .column-2,
.tablepress-id-24 .column-3,
.tablepress-id-24 .column-4,
.tablepress-id-24 .column-5,
.tablepress-id-24 .column-6,
.tablepress-id-24 .column-7,
.tablepress-id-24 .column-8 {
min-width: 85px !important;
}Love your work!
PS Thanks for the awesome free plugin.
Latest: WP 6.8.1, Tablepress 3.1.2
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] column width CSS not workingFYI Horizontal scrolling is enabled in table features, but all other table features are off.
Forum: Plugins
In reply to: [Fresh Plugins] Will this plugin delete settings?For instance, will it delete settings and serial numbers for paid plugins?
And will it ONLY reinstall WP repository plugins?SolidWP is still reporting that this problem still hasn’t been fixed. Can you advise when this will be fixed please.
https://solidwp.com/blog/wordpress-vulnerability-report-april-17-2024/#h-subscribe2-form-email-subscribers-newslettersForum: Plugins
In reply to: [Disable Right Click For WP] Known vulnerabilities foundForum: Plugins
In reply to: [Disable Right Click For WP] Cross-Site Request Forgery (CSRF) vulnerabilityI am seeing the same critical CSRF vulnerability. Can you please let us know.
https://www.wordfence.com/threat-intel/vulnerabilities/id/44e61ac0-f420-4603-a81f-031a22e01927Thanks @navanathbhosale!!! Rolling back to v1.5 of the plugin fixed it!!!!
Didn’t work. This is a nightmare. If we delete the Wordfence folder, the entire site crashes. If we deactivate the Wordfence plugin, the entire site crashes. If we follow your instructions, the entire site crashes. Help please! We can’t keep restoring the site from backups!
- This reply was modified 6 years, 7 months ago by creativepassion.
Forum: Plugins
In reply to: [Contact Form 7] Getting Default Values from Shortcode AttributesWould the child functions.php help?
<?php
/**
* Functions – Child theme custom functions
*//*****************************************************************************************************************
Caution: do not remove this or you will lose all the customization capabilities created by Divi Children plugin */
require_once(‘divi-children-engine/divi_children_engine.php’);
/****************************************************************************************************************//**
* Patch to fix Divi issue: Duplicated Predefined Layouts.
*/
remove_action( ‘admin_init’, ‘et_pb_update_predefined_layouts’ );
function Divichild_pb_update_predefined_layouts() {
if ( ‘on’ === get_theme_mod( ‘et_pb_predefined_layouts_updated_2_0’ ) ) {
return;
}
if ( ! get_theme_mod( ‘et_pb_predefined_layouts_added’ ) OR ( ‘on’ === get_theme_mod( ‘et_pb_predefined_layouts_added’ ) )) {
et_pb_delete_predefined_layouts();
}
et_pb_add_predefined_layouts();
set_theme_mod( ‘et_pb_predefined_layouts_updated_2_0’, ‘on’ );
}
add_action( ‘admin_init’, ‘Divichild_pb_update_predefined_layouts’ );function mycustom_featured_width( ) { return 160; /* Custom featured post image width */ }
add_filter( ‘et_pb_blog_image_width’, ‘mycustom_featured_width’);
add_filter( ‘et_pb_index_blog_image_width’, ‘mycustom_featured_width’);function mycustom_featured_height( ) { return 130; /* Custom featured post image height */ }
add_filter( ‘et_pb_blog_image_height’, ‘mycustom_featured_height’);
add_filter( ‘et_pb_index_blog_image_height’, ‘mycustom_featured_height’);function mycustom_featured_size( $image_sizes ) {
$custom_size = mycustom_featured_width() . ‘x’ . mycustom_featured_height();
$image_sizes[$custom_size] = ‘et-pb-post-main-image-thumbnail’;
return $image_sizes;
}
add_filter( ‘et_theme_image_sizes’, ‘mycustom_featured_size’ );/* Index & archive */
function wpt_index_thumbnail_width( $width ) {
if( !is_single() ) {
return 150; //index thumbnail width in pixels
} else {
return $width;
}
}
add_filter( ‘et_pb_index_blog_image_width’, ‘wpt_index_thumbnail_width’);
function wpt_index_thumbnail_height( $height ) {
if( !is_single() ) {
return 212; //index thumbnail height in pixels
} else {
return $height;
}
}
add_filter( ‘et_pb_index_blog_image_height’, ‘wpt_index_thumbnail_height’);/* Add hotelmotel shortcode attribute */
add_filter( ‘shortcode_atts_wpcf7’, ‘custom_shortcode_atts_wpcf7_filter’, 10, 3 );function custom_shortcode_atts_wpcf7_filter( $out, $pairs, $atts ) {
$my_attr = ‘hotelmotel’;if ( isset( $atts[$my_attr] ) ) {
$out[$my_attr] = $atts[$my_attr];
}return $out;
}?>
Forum: Plugins
In reply to: [Contact Form 7] Getting Default Values from Shortcode AttributesI’ve tried deactivating every plugin except Contact Form 7. But still no luck 🙁
Thanks for your help!
WP 4.9.10
Theme: DiviVersion 3.12.2 By Elegant ThemesAdmin Post Navigation 2.1 By Scott Reilly
BackupBuddy 6.1.0.2 By iThemes
Contact Form 7 5.1.1 By Takayuki Miyoshi 🙂
Divi Booster By 1.2.4 Dan Mossop
Divi Children 2.0.7.1 By Luis Alejandre
Duplicate Post 3.2.2 By Enrico Battocchi
Elegant Themes Updater 1.1 By Elegant Themes
Google Sitemap 3.1.7 by BestWebSoft By BestWebSoft
Insert Pages 3.4.5 By Paul Ryan
Intuitive Custom Post Order 3.1.2 By hijiri
List category posts 0.79 By Fernando Briano
Really Simple SSL 3.15 By Rogier Lankhorst
Yoast Version 10.1.3Forum: Plugins
In reply to: [Contact Form 7] Getting Default Values from Shortcode AttributesThanks. But it’s still not working sorry. Help please!
functions.php:
/* Add hotelmotel shortcode attribute */
add_filter( ‘shortcode_atts_wpcf7’, ‘custom_shortcode_atts_wpcf7_filter’, 10, 3 );function custom_shortcode_atts_wpcf7_filter( $out, $pairs, $atts ) {
$my_attr = ‘hotelmotel’;if ( isset( $atts[$my_attr] ) ) {
$out[$my_attr] = $atts[$my_attr];
}return $out;
}Mail message body:
[hotelmotel]Form:
[hidden hotelmotel default:shortcode_attr]Page:
[contact-form-7 id=”38″ title=”Contact form – Andy” hotelmotel=”Empire Hotel Gympie”]Thanks for sharing Imagely! But does that option then hide the alt tags on the images?
- This reply was modified 7 years, 2 months ago by creativepassion.
Forum: Plugins
In reply to: [Contact Form 7] Tracking form submissions with Google Tag ManagerThanks!!!