Plugin Directory

Changeset 3213562


Ignore:
Timestamp:
12/26/2024 10:49:35 PM (15 months ago)
Author:
laith3
Message:

Added Previous and Next navigation links to single tradejournal posts for easier browsing

Location:
tradejournal/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tradejournal/trunk/assets/css/style.css

    r3196002 r3213562  
    261261  /* Center table if needed */
    262262}
     263
     264.tjwp-post-navigation {
     265  display: flex;
     266  justify-content: center;
     267  gap: 2rem;
     268  /* Adds space between the links */
     269  margin: 2rem 0;
     270  /* Adds vertical spacing around the navigation */
     271  font-size: 1.2rem;
     272  /* Optional: Adjust the font size */
     273}
     274
     275.tjwp-post-navigation .nav-previous,
     276.tjwp-post-navigation .nav-next {
     277  text-align: center;
     278}
     279
     280.tjwp-post-navigation a {
     281  text-decoration: none;
     282  color: #0073aa;
     283  /* Matches WordPress link color */
     284  transition: color 0.3s ease;
     285}
     286
     287.tjwp-post-navigation a:hover {
     288  color: #005177;
     289  /* Darker shade for hover effect */
     290}
  • tradejournal/trunk/readme.txt

    r3206633 r3213562  
    44Requires at least: 5.0
    55Tested up to: 6.7
    6 Stable tag: 1.0.7
     6Stable tag: 1.1.0
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    8787== Changelog ==
    8888
     89= 1.1.0 =
     90* Feature: Added "Previous" and "Next" navigation links to single tradejournal posts for easier browsing.
     91
    8992= 1.0.7 =
    9093* Enhancement: Automatically retrieve instrument multipliers and commissions from plugin settings for CSV imports.
     
    149152== Upgrade Notice ==
    150153
     154= 1.1.0 =
     155* Feature upgrade: Added "Previous" and "Next" navigation links for seamless navigation between tradejournal posts.
     156
    151157= 1.0.7 =
    152158* Easily customize multipliers and commissions directly from the settings page.
  • tradejournal/trunk/tradejournal.php

    r3205179 r3213562  
    33Plugin Name: TradeJournal WP
    44Description: TradeJournal WP imports trades from NinjaTrader CSV files, creating detailed journal entries for each trading day. Includes trade management, P&L calculation, responsive tables, lightbox for screenshots, and compatibility with custom post types and block-based themes. Track performance, analyze setups, and organize screenshots easily within WordPress.
    5 Version: 1.0.7
     5Version: 1.1.0
    66Author: Laith Sinawi
    77Author URI: https://sinawiwebdesign.com
Note: See TracChangeset for help on using the changeset viewer.