Changeset 2022595
- Timestamp:
- 01/31/2019 11:07:10 AM (7 years ago)
- Location:
- tc-portfolio/trunk
- Files:
-
- 4 added
- 3 edited
-
assets/css/tc-portfolio-style.css (modified) (2 diffs)
-
assets/css/tcode-grid.css (added)
-
readme.txt (modified) (4 diffs)
-
tc-portfolio.php (modified) (3 diffs)
-
template (added)
-
template/single-tcportfolio-center.php (added)
-
template/single-tcportfolio.php (added)
Legend:
- Unmodified
- Added
- Removed
-
tc-portfolio/trunk/assets/css/tc-portfolio-style.css
r1599963 r2022595 33 33 transition: all .5s ease; 34 34 margin-right: 10px; 35 margin-bottom: 20px; 35 36 } 36 37 … … 131 132 background-color: #FF6766 !important; 132 133 } 134 135 136 /* Responsive media query */ 137 138 @media only screen and (max-width:1020px) { 139 140 .tcpcol_four,.tcpcol_five{ 141 width:31%; 142 margin-bottom:20px; 143 float:none; 144 } 145 div.portfolio_items{ 146 margin-top:100px; 147 } 148 } 149 @media only screen and (max-width:770px) { 150 151 .tcpcol_three,.tcpcol_four,.tcpcol_five{ 152 width:49%; 153 margin-bottom:20px; 154 float:none; 155 } 156 div.portfolio_items{ 157 margin-top:100px; 158 } 159 } 160 @media only screen and (max-width:480px) { 161 162 .tcportfolio_single_items{ 163 width:100%; 164 margin-bottom:20px; 165 float:none; 166 } 167 div.portfolio_items{ 168 margin-top:100px; 169 } 170 } 171 @media only screen and (max-width:320px) { 172 .tcportfolio_single_items{ 173 width:100%; 174 margin-bottom:20px; 175 float:none; 176 } 177 div.portfolio_items{ 178 margin-top:100px; 179 } 180 } 181 182 /*Ends Responsive media query */ 183 /*Column*/ 184 .tcpt-col-2{ 185 width:48%; 186 } 187 .tcpt-col-3{ 188 width:32%; 189 } 190 .tcpt-col-4{ 191 width:25%; 192 193 } 194 .tcpt-col-5{ 195 width:19%; 196 } 197 198 .tcp-4{ 199 width:250px; 200 float: left; 201 } 202 /* End Column*/ -
tc-portfolio/trunk/readme.txt
r1916895 r2022595 4 4 Tags:portfolio, Responsive Portfolio, Filterable Portfolio, Responsive Filterable Portfolio, portfolio gallery, portfolio plugin, photography portfolio, portfolios, Lightbox, Responsive Portfolio, thumbnails, wordpress gallery, wordpress portfolio, wordpress portfolio lightbox, jquery filter, filter jquery, isotope js, isotope, free portfolio, jquery isotope, filterable, wp portfolio, filterable portfolio 5 5 Requires at least: 3.0.1 6 Tested up to: 4.9.77 Stable tag: 4.9.76 Tested up to: 5.0.3 7 Stable tag: 5.0.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 61 61 62 62 <strong> Video Tutorial </strong> 63 63 64 https://www.youtube.com/watch?v=iXxbAHjxuwk 64 65 … … 70 71 71 72 <strong> Video Tutorial </strong> 73 72 74 https://www.youtube.com/watch?v=iXxbAHjxuwk 73 75 … … 114 116 == Changelog == 115 117 118 119 == Version 1.4 == 120 121 a. Navigation on Mobile screen CSS issue fixed 122 b. Mobile Screen Responsive issue solved 123 c. Compatible with WordPress 5.0.3 124 116 125 = version 1.3 = 117 118 *HTML Div Taq Bug fixed 119 126 127 *HTML Div Taq Bug fixed 128 120 129 = version 1.2 = 121 130 122 removed cursor:pointer on image overlay 131 removed cursor:pointer on image overlay 123 132 124 133 = version 1.1 = -
tc-portfolio/trunk/tc-portfolio.php
r1639514 r2022595 4 4 * Plugin URI: https://www.themescode.com/items/ 5 5 * Description: Portfolio is a custom post type based Responsive Filterable Portfolio showing plugin.Users can create stunning portfolio WordPress site usining Shortcode [tc-portfolio].TC Portfolio is a user-friendly, fully responsive , filterable portfolio showcasing plugin. 6 * Version: 1. 37 * Author: themesCode 6 * Version: 1.4 7 * Author: themesCode 8 8 * Author URI: https://www.themescode.com/items/tc-portfolio-pro/ 9 9 * Text Domain: tc-portfolio … … 44 44 wp_enqueue_script('isotope', TCPORTFOLIO_PLUGIN_URI.'/vendors/isotope/isotope.pkgd.min.js', array('jquery'),'3.1.0', true); 45 45 wp_enqueue_style('tc-portfolio', TCPORTFOLIO_PLUGIN_URI.'/assets/css/tc-portfolio-style.css'); 46 wp_enqueue_style('tcode-grid', TCPORTFOLIO_PLUGIN_URI.'/assets/css/tcode-grid.css'); 46 47 wp_enqueue_style( 'font-awesome','//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'); 47 48 wp_enqueue_style('magnific-popup', TCPORTFOLIO_PLUGIN_URI.'/vendors/magnific-popup/magnific-popup.css'); … … 105 106 add_action( 'activated_plugin', 'tcportfolio_activation_redirect' ); 106 107 108 // page template 109 function tcportfolio_get_custom_post_type_template($single_template) { 110 global $post; 111 $auto_height=tcp_option('height-auto','tc_single_page_style', true ); 112 $template='single-tcportfolio-center'; 113 if ($post->post_type == 'tcportfolio') { 114 $single_template = dirname( __FILE__ ) . '/template/'.$template.'.php'; 115 } 116 return $single_template; 117 } 118 add_filter( 'single_template', 'tcportfolio_get_custom_post_type_template' ); 119 107 120 108 121 // adding link
Note: See TracChangeset
for help on using the changeset viewer.