Plugin Directory

Changeset 2022595


Ignore:
Timestamp:
01/31/2019 11:07:10 AM (7 years ago)
Author:
themescode
Message:

update

Location:
tc-portfolio/trunk
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • tc-portfolio/trunk/assets/css/tc-portfolio-style.css

    r1599963 r2022595  
    3333    transition: all .5s ease;
    3434    margin-right: 10px;
     35    margin-bottom: 20px;
    3536}
    3637
     
    131132    background-color: #FF6766 !important;
    132133}
     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  
    44Tags: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
    55Requires at least: 3.0.1
    6 Tested up to: 4.9.7
    7 Stable tag: 4.9.7
     6Tested up to: 5.0.3
     7Stable tag: 5.0.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6161
    6262<strong> Video Tutorial </strong>
     63
    6364https://www.youtube.com/watch?v=iXxbAHjxuwk
    6465
     
    7071
    7172<strong> Video Tutorial </strong>
     73
    7274https://www.youtube.com/watch?v=iXxbAHjxuwk
    7375
     
    114116== Changelog ==
    115117
     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
    116125= version  1.3 =
    117  
    118  *HTML Div Taq Bug fixed 
    119  
     126
     127 *HTML Div Taq Bug fixed
     128
    120129= version  1.2 =
    121130
    122  removed cursor:pointer  on image overlay 
     131 removed cursor:pointer  on image overlay
    123132
    124133= version  1.1 =
  • tc-portfolio/trunk/tc-portfolio.php

    r1639514 r2022595  
    44 * Plugin URI:         https://www.themescode.com/items/
    55 * 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.3
    7  * Author:             themesCode 
     6 * Version:            1.4
     7 * Author:             themesCode
    88 * Author URI:         https://www.themescode.com/items/tc-portfolio-pro/
    99 * Text Domain:        tc-portfolio
     
    4444     wp_enqueue_script('isotope', TCPORTFOLIO_PLUGIN_URI.'/vendors/isotope/isotope.pkgd.min.js', array('jquery'),'3.1.0', true);
    4545     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');
    4647     wp_enqueue_style( 'font-awesome','//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
    4748     wp_enqueue_style('magnific-popup', TCPORTFOLIO_PLUGIN_URI.'/vendors/magnific-popup/magnific-popup.css');
     
    105106 add_action( 'activated_plugin', 'tcportfolio_activation_redirect' );
    106107
     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
    107120
    108121// adding link
Note: See TracChangeset for help on using the changeset viewer.