-
-
Save RichardNesbitt/5ed1198ef75ef53fcc820419e57307ee to your computer and use it in GitHub Desktop.
<?php | |
/* add this to your theme's functions.php file */ | |
/* Add option for URL to column settings */ | |
vc_add_param("vc_column", array( | |
"type" => "vc_link", | |
"class" => "", | |
"heading" => "Column Link", | |
"param_name" => "column_link" | |
)); | |
/* Add option for URL to column_inner settings */ | |
vc_add_param("vc_column_inner", array( | |
"type" => "vc_link", | |
"class" => "", | |
"heading" => "Column Link", | |
"param_name" => "column_link" | |
)); | |
?> |
<?php | |
/* place this file in [your-theme]/vc_templates/ */ | |
if ( ! defined( 'ABSPATH' ) ) { | |
die( '-1' ); | |
} | |
/* This file modifies the vc_column output to accomodate the otional URL parameter */ | |
/** | |
* Shortcode attributes | |
* @var $atts | |
* @var $el_id | |
* @var $el_class | |
* @var $width | |
* @var $css | |
* @var $offset | |
* @var $content - shortcode content | |
* @var $css_animation | |
* Shortcode class | |
* @var WPBakeryShortCode_Vc_Column $this | |
*/ | |
$el_class = $el_id = $width = $parallax_speed_bg = $parallax_speed_video = $parallax = $parallax_image = $video_bg = $video_bg_url = $video_bg_parallax = $css = $offset = $css_animation = ''; | |
$output = ''; | |
$atts = vc_map_get_attributes( $this->getShortcode(), $atts ); | |
extract( $atts ); | |
wp_enqueue_script( 'wpb_composer_front_js' ); | |
$width = wpb_translateColumnWidthToSpan( $width ); | |
$width = vc_column_offset_class_merge( $offset, $width ); | |
$css_classes = array( | |
$this->getExtraClass( $el_class ) . $this->getCSSAnimation( $css_animation ), | |
'wpb_column', | |
'vc_column_container', | |
$width, | |
); | |
if ( vc_shortcode_custom_css_has_property( $css, array( | |
'border', | |
'background', | |
) ) || $video_bg || $parallax | |
) { | |
$css_classes[] = 'vc_col-has-fill'; | |
} | |
$wrapper_attributes = array(); | |
$has_video_bg = ( ! empty( $video_bg ) && ! empty( $video_bg_url ) && vc_extract_youtube_id( $video_bg_url ) ); | |
$parallax_speed = $parallax_speed_bg; | |
if ( $has_video_bg ) { | |
$parallax = $video_bg_parallax; | |
$parallax_speed = $parallax_speed_video; | |
$parallax_image = $video_bg_url; | |
$css_classes[] = 'vc_video-bg-container'; | |
wp_enqueue_script( 'vc_youtube_iframe_api_js' ); | |
} | |
if ( ! empty( $parallax ) ) { | |
wp_enqueue_script( 'vc_jquery_skrollr_js' ); | |
$wrapper_attributes[] = 'data-vc-parallax="' . esc_attr( $parallax_speed ) . '"'; // parallax speed | |
$css_classes[] = 'vc_general vc_parallax vc_parallax-' . $parallax; | |
if ( false !== strpos( $parallax, 'fade' ) ) { | |
$css_classes[] = 'js-vc_parallax-o-fade'; | |
$wrapper_attributes[] = 'data-vc-parallax-o-fade="on"'; | |
} elseif ( false !== strpos( $parallax, 'fixed' ) ) { | |
$css_classes[] = 'js-vc_parallax-o-fixed'; | |
} | |
} | |
if ( ! empty( $parallax_image ) ) { | |
if ( $has_video_bg ) { | |
$parallax_image_src = $parallax_image; | |
} else { | |
$parallax_image_id = preg_replace( '/[^\d]/', '', $parallax_image ); | |
$parallax_image_src = wp_get_attachment_image_src( $parallax_image_id, 'full' ); | |
if ( ! empty( $parallax_image_src[0] ) ) { | |
$parallax_image_src = $parallax_image_src[0]; | |
} | |
} | |
$wrapper_attributes[] = 'data-vc-parallax-image="' . esc_attr( $parallax_image_src ) . '"'; | |
} | |
if ( ! $parallax && $has_video_bg ) { | |
$wrapper_attributes[] = 'data-vc-video-bg="' . esc_attr( $video_bg_url ) . '"'; | |
} | |
$css_class = preg_replace( '/\s+/', ' ', apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, implode( ' ', array_filter( $css_classes ) ), $this->settings['base'], $atts ) ); | |
$wrapper_attributes[] = 'class="' . esc_attr( trim( $css_class ) ) . '"'; | |
if ( ! empty( $el_id ) ) { | |
$wrapper_attributes[] = 'id="' . esc_attr( $el_id ) . '"'; | |
} | |
$output .= '<div ' . implode( ' ', $wrapper_attributes ) . '>'; | |
$innerColumnClass = 'vc_column-inner ' . esc_attr( trim( vc_shortcode_custom_css_class( $css ) ) ); | |
$output .= '<div class="' . trim( $innerColumnClass ) . '">'; | |
/* Inserted to check whether a link is present in the settings */ | |
if( !empty($column_link) ){ | |
$column_link_array = vc_build_link($column_link); | |
$column_link = esc_url($column_link_array['url']); | |
$column_target = $column_link_array['target']; | |
$column_rel = $column_link_array['rel']; | |
$column_title = $column_link_array['title']; | |
$output .= "<a href='$column_link' "; | |
$output .= ( $column_target == '_blank' ) ? "target='_blank' " : ''; | |
$output .= ( $column_rel == 'nofollow' ) ? "rel='nofollow' " : ''; | |
$output .= ( $column_title !== '' ) ? "title='$column_title' " : ''; | |
$output .= "class='big_link' style='position:absolute;top:0;left:0;width:100%;height:100%;z-index:9999;'aria-hidden='true'></a>"; | |
} | |
/* End Changes - Resume base code */ | |
$output .= '<div class="wpb_wrapper">'; | |
$output .= wpb_js_remove_wpautop( $content ); | |
$output .= '</div>'; | |
$output .= '</div>'; | |
$output .= '</div>'; | |
echo $output; |
<?php | |
/* place this file in [your-theme]/vc_templates/ */ | |
if ( ! defined( 'ABSPATH' ) ) { | |
die( '-1' ); | |
} | |
/* This file modifies the vc_column_inner output to accomodate the otional URL parameter */ | |
/** | |
* Shortcode attributes | |
* @var $atts | |
* @var $el_class | |
* @var $el_id | |
* @var $width | |
* @var $css | |
* @var $offset | |
* @var $content - shortcode content | |
* Shortcode class | |
* @var WPBakeryShortCode_Vc_Column_Inner $this | |
*/ | |
$el_class = $width = $el_id = $css = $offset = ''; | |
$output = ''; | |
$atts = vc_map_get_attributes( $this->getShortcode(), $atts ); | |
extract( $atts ); | |
$width = wpb_translateColumnWidthToSpan( $width ); | |
$width = vc_column_offset_class_merge( $offset, $width ); | |
$css_classes = array( | |
$this->getExtraClass( $el_class ), | |
'wpb_column', | |
'vc_column_container', | |
$width, | |
); | |
if ( vc_shortcode_custom_css_has_property( $css, array( | |
'border', | |
'background', | |
) ) ) { | |
$css_classes[] = 'vc_col-has-fill'; | |
} | |
$wrapper_attributes = array(); | |
$css_class = preg_replace( '/\s+/', ' ', apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, implode( ' ', array_filter( $css_classes ) ), $this->settings['base'], $atts ) ); | |
$wrapper_attributes[] = 'class="' . esc_attr( trim( $css_class ) ) . '"'; | |
if ( ! empty( $el_id ) ) { | |
$wrapper_attributes[] = 'id="' . esc_attr( $el_id ) . '"'; | |
} | |
$output .= '<div ' . implode( ' ', $wrapper_attributes ) . '>'; | |
$innerColumnClass = 'vc_column-inner ' . esc_attr( trim( vc_shortcode_custom_css_class( $css ) ) ); | |
$output .= '<div class="' . trim( $innerColumnClass ) . '">'; | |
/* Inserted to check whether a link is present in the settings */ | |
if( !empty($column_link) ){ | |
$column_link_array = vc_build_link($column_link); | |
$column_link = esc_url($column_link_array['url']); | |
$column_target = $column_link_array['target']; | |
$column_rel = $column_link_array['rel']; | |
$column_title = $column_link_array['title']; | |
$output .= "<a href='$column_link' "; | |
$output .= ( $column_target == '_blank' ) ? "target='_blank' " : ''; | |
$output .= ( $column_rel == 'nofollow' ) ? "rel='nofollow' " : ''; | |
$output .= ( $column_title !== '' ) ? "title='$column_title' " : ''; | |
$output .= "class='big_link' style='position:absolute;top:0;left:0;width:100%;height:100%;z-index:9999;'aria-hidden='true'></a>"; | |
} | |
/* End Changes - Resume base code */ | |
$output .= '<div class="wpb_wrapper">'; | |
$output .= wpb_js_remove_wpautop( $content ); | |
$output .= '</div>'; | |
$output .= '</div>'; | |
$output .= '</div>'; | |
echo $output; |
Fantastic solution to apply on WPBakery
Currently running on WPBakery Page Builder v6.5.0
Added the Snippet to the function.php + added both *.php files into the Child Theme directory.
Didn't need to add anything else to the function.php file for this to work.
I have been using this without issue for quite some time and I have just noticed in the latest Wordpress update its just stopped working. The option within the inner row still exists so I can add the URL. When I try and test and hover over the inner row I get nothing.
Thanks for the heads up. I’ll look into it.
On Sun, Mar 28, 2021 at 4:55 PM Adam Jones @.***> wrote: @LeaderCom commented on this gist. ------------------------------ I have been using this without issue for quite some time and I have just noticed in the latest Wordpress update its just stopped working. The option within the inner row still exists so I can add the URL. When I try and test and hover over the inner row I get nothing. — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://gist.github.com/5ed1198ef75ef53fcc820419e57307ee#gistcomment-3684597, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACIMJHOTX334QADP4OOE4KTTF7FZLANCNFSM4IGOONDQ .
-- -Richard Nesbitt
Hi Richard,
After sending the message last night I did a bit more testing and narrowed down the issue. I originally had it set up so I had a single row with 2 x 4 column rows inside, which contained the hyperlinks.
If I recreate one of the 4 x column rows outside of the single column then it works. It just doesn't seem to like being embedded inside now.
Thanks for the heads up. I’ll look into it.
On Sun, Mar 28, 2021 at 4:55 PM Adam Jones @.***> wrote: @LeaderCom commented on this gist. ------------------------------ I have been using this without issue for quite some time and I have just noticed in the latest Wordpress update its just stopped working. The option within the inner row still exists so I can add the URL. When I try and test and hover over the inner row I get nothing. — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://gist.github.com/5ed1198ef75ef53fcc820419e57307ee#gistcomment-3684597, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACIMJHOTX334QADP4OOE4KTTF7FZLANCNFSM4IGOONDQ .
-- -Richard NesbittHi Richard,
After sending the message last night I did a bit more testing and narrowed down the issue. I originally had it set up so I had a single row with 2 x 4 column rows inside, which contained the hyperlinks.
If I recreate one of the 4 x column rows outside of the single column then it works. It just doesn't seem to like being embedded inside now.
I thought maybe something in the vc_column_inner.php needed to be updated, but I'm not having any issues on a new build I added this code to. Do you have anything else running that extends or modifies WP Bakery Page Builder? There are some that create a new function for elements like vc_column_inner and can't be modified by your functions.php file because of load order (plugins load first).
Hi RichardNesbitt, thanks for your work.
Same problem here.
Added all three code to my theme. I have the field for custom link in column, but not working in front end.
I tried to deactive add on of Visual Composer, nothing change.
Thanks a ton, worked beautifully!
I can't find vc_column_inner.php file in the theme editor
Hi,
after adding your php files, my wordpress is all messed up. i can add links to columns, but after updating and reloading the page they are gone again and dont get saved. also in the wpbakery page builder, all images have the missing image thumbnail, although they are still there and shown in the frontend. when i want to change an image, the media browser is empty. i removed all php files again but its still broken.
This is amazing, thank you so so much! I'm far from advanced when it comes to Wordpress and this was straightforward and easy to use. Thanks again!
Hi Richard,
This is really odd. I've been using your solution for a couple of years and had no problems. Recently added to a new version of wpbakery, with the Alchemist Theme for Sportspress and for some reason Wordpress becomes unusable.
Media doesn't load, and load times between pages become extensive. I've tested only having the files, individually, but as soon as the functio.php file is updated Wordpress starts failing. During this time, when wordpress sections do get to load I can use the column link and works as expected, but media and other functions don't. It seems it loops loading the function. Updated Wordpress and WPBackery.
System Status:
WPBackery version 6.7.0 [ Not sure if this was tested with the latest version. ]
Wordpress version 5.8.3
@jonasj95 I have the exact issue. I recently noticed you have this issue and I hope you were able to solve it.
If not, for now if you need to have access to your media and WPBakery Page Builder, remove the new column link function from functions.php
Remove the php files and the function.
One last thing, I noticed it now. When I completely remove a link in the column, previously entered, it still remains clickable despite having removed it. I'd like to know if it's my bug or it turns out to you too.
To fix this, the order of the function needs slightly rearranging to the below.
$column_link_array = vc_build_link($column_link);
$column_link = esc_url($column_link_array['url']);
if( !empty($column_link) ){
$column_target = $column_link_array['target'];
$column_rel = $column_link_array['rel'];
$column_title = $column_link_array['title'];
$output .= "<a href='$column_link' target='$column_target' rel='$column_rel' title='$column_title' class='big_link' style='position:absolute;top:0;left:0;width:100%;height:100%;z-index:9999;'aria-hidden='true'></a>";
}
Hello Richard,
I hale problem with this solution, I could add link to back-end editor like this
But It didn't work on front-end page, I have try serveral solution I found in the comments, include added to parent theme, modified file on js_composer/templates/shortcodes and I have added this to functions.php in both parent and child theme, copy the vc_template of this to file in both parent and child theme :
vc_add_param("vc_column", array(
"type" => "vc_link",
"class" => "",
"heading" => "Column Link",
"param_name" => "column_link"
));
/* Add option for URL to column_inner settings */
vc_add_param("vc_column_inner", array(
"type" => "vc_link",
"class" => "",
"heading" => "Column Link",
"param_name" => "column_link"
));
add_filter('vc_shortcode_set_template_vc_column', function($template){
return get_stylesheet_directory() . '/vc_templates/vc_column.php';
});
and it's not working too, I use wpbakery builder version 3.7.0, wish I could find something that help, thank you.
Found a solution that work, add this to function.php
add_action( 'vc_before_init', 'vc_before_init_actions' );
function vc_before_init_actions() {
// Link your VC elements's folder
if( function_exists('vc_set_shortcodes_templates_dir') ){
vc_set_shortcodes_templates_dir( get_template_directory() . '/vc-elements' );
}
}
and edit file vc_column.php,vc_column_inner.php in /wp-content/plugins/js_composer/include/templates/shortcodes
thema sway, Version WPBPB: 3.7.0
Hello,
First of all thank you for this code, it's such a good function!
It still works in WP Bakery 6.10 but there is a tiny problem.
The link always opens with target=_blank but i do not select it in the link options when editing the page.
If I switch to wordpress view and edit the target to target=_self it does not do anything and on the front end it keeps opening in a new tab.
Is there a solution for this? I'm not an expert but i tried hard and I can't do it...
EDIT: nevermind, its only when you are logged in ^^ for visitors it works
I've just published an update for the latest WP Bakery Page Builder v. 6.13
Slight changes in their code, but nothing major. Added some ternary operators to bypass bits of code if title, rel, and target boxes aren't checked.
The Best way to add WP Bakery column clickable
Add a Custom CSS Class:
- In WPBakery Page Builder, edit the column you want to make clickable.
- Under the "Design Options" or "Design" tab (depending on your WPBakery version), you should find an option to add a custom CSS class to the column. It might be labeled as "Extra class name" or something similar.
- Add a custom CSS class, for example, "clickable-column" to the column.
.clickable-column{
cursor: pointer;
}
Custom JavaScript:
- In your WordPress theme, you can add custom JavaScript code to make the columns with the "clickable-column" class clickable. You can do this by adding the JavaScript code in the theme's JavaScript file or using a custom JavaScript plugin.
Here's an example of how you can use JavaScript (jQuery) to make columns with the "clickable-column" class clickable and navigate to a specific URL:
jQuery(document).ready(function($) {
// Add a click event handler to elements with the "clickable-column" class
$('.clickable-column').click(function() {
// Get the URL from a data attribute or set it directly
var targetUrl = $(this).data('target-url') || 'https://example.com';
// Navigate to the URL
window.location.href = targetUrl;
});
});
DO NOT DO THIS.
Even if it wasn't a bad idea because you'd have to do it for every 👏 single👏 column👏, it can cause accessibility issues. Without having a semantically clickable element, there's no target for assistive technology.
DO NOT DO THIS. Even if it wasn't a bad idea because you'd have to do it for every 👏 single👏 column👏, it can cause accessibility issues. Without having a semantically clickable element, there's no target for assistive technology.
I'm using it for Anchor ID, & it works for me :)
@RichardNesbitt everything works fine in the backend, but frontend-wise the column is still not clickable :/
WPB Version 6.4.2
Hi I am trying to get this to work for me. I am able to add the link in the back end, but it is not working in the front end. I may be putting the second lot of code in the wrong place? I cannot find [your-theme]/vc_templates/ */. I found this which I hoped was the same thing
Jevelin: Visual Composer Compatibility(beta!) Page Template (page-vc.php).
Where do I find vc_templates? I tried theme file editor in wordpress and I searched the files on cpanel
Or is there an easier way??
Im am just winging it, any help would be appreciated!!!
@jennyLupo i just pasted both vc files in the theme root folder, since i also dont have any /vc_templates/ folder. maybe that might also be the issue for me.
my theme is bought of envato.
Hi @AaronChaos this is what i added and it works for me.
I hope this helps