A shareholder also referred to as a stockholder, is a person, company, or institution that owns at least one share of a company’s stock, known as equity. Because shareholders are essentially own the company, they reap the benefits of a business’s success.
Author: MammaMia
Andy Garcia
Andrés Arturo García Menéndez (born April 12, 1956) is an American actor and director. He first rose to prominence acting in Brian De Palma’s The Untouchables (1987) alongside Kevin Costner, Sean Connery, and Robert De Niro. He continued to act in films such as Stand and Deliver (1988), and Internal Affairs (1990). He then starred in Francis Ford Coppola’s The Godfather Part III (1990) as Vincent Mancini alongside Al Pacino, Diane Keaton, and Eli Wallach. He received an Academy Award nomination for Best Supporting Actor for his performance. He continued to act in Hollywood movies such as Stephen Frears’ Hero (1992), the romantic drama When a Man Loves a Woman (1994), and the action thriller Desperate Measures (1998).
In 2000, he produced and acted in the HBO television film, For Love or Country: The Arturo Sandoval Story (2000), where he received a Primetime Emmy Award and a Golden Globe Award nomination for his performance. He also starred in Steven Soderbergh’s Ocean’s Eleven (2001) and its sequels, Ocean’s Twelve (2004) and Ocean’s Thirteen (2007). In 2005, García directed and starred in the film The Lost City alongside Dustin Hoffman and Bill Murray. He also starred in New York, I Love You (2008), the dramedy City Island (2009), the romantic comedy At Middleton (2013), and the crime thriller Kill the Messenger (2014). In recent years he has had a career resurgence in such films as Mamma Mia! Here We Go Again, Book Club, The Mule (all 2018) and the HBO television movie My Dinner with Hervé (2018).
How to create a one column anniversary view
[std_anniversary filter="tax::departments::is::executive;"]
How to create a one-column anniversary view
<style> | |
#onecolumn .row{ | |
flex-direction: column !important; | |
} | |
</style> | |
<div id="onecolumn" style="padding:40px 0"> | |
[std_anniversary filter="tax::departments::is::executive;"] | |
</div> |
How to use Visual Shortcode Builder to create shortcodes
Employee Directory Pro WordPress plugin comes with powerful Visual Shortcode Builder. Visual Shortcode Builder helps you create simple or complex shortcodes without needing to know specific syntax.
Watch the video to see how.
How to set the number of employees per page
The shortcode below displays IT department employees with a paged navigation, limiting the displayed employees to 2 per page.
[employee_circle_grid filter="tax::departments::is::it;misc::posts_per_page::is::2;"] |
You can use the Visual Shortcode Builder to create this code.
How to display employees of a department without paged navigation
The shortcode below displays all IT department employees without a paged navigation:
[employee_circle_grid filter="tax::departments::is::it;misc::posts_per_page::is::-1;"] |
If you need to display all employees without paged navigation, you need to remove the filter for departments. You do not need to create any shortcode manually, simply use the Visual Shortcode Builder to create any shortcode.
[employee_circle_grid filter="misc::posts_per_page::is::-1;"]
How to display image in square instead of circles
The shortcode below displays all IT department employees without a paged navigation and in squares instead of circles.
// Add the code below your theme's style.css if you need to change all employee images | |
div.emd-container .person-img { | |
border-radius: 0; | |
} | |
//If you want to change it for shortcode bases, wrap your shortcode in .square class | |
<div class="square">[employee_circle_grid filter="tax::departments::is::it;misc::posts_per_page::is::-1;"]</div> | |
// And add the following code to your theme's style.css file | |
.square div.emd-container .person-img { | |
border-radius: 0; | |
} |
How to hide Bio attributes that you do not need
- Go to the plugin settings
- Click on Employees entity
- Find the attribute you do not want to display
- Select “Hide From Frontend” option
- Repeat the same for the attribute(s) you want to hide
How to create Department pages like in this site
To be able to create departments like on this site, you need to add the link pointing to a department to your WordPress menu. Follow the steps below:
- Login to WordPress admin as administrator
- Go to Appearance > Menus
- Create a menu if you’ve not already created one and assign it to a theme location under Menu Settings on the right hand side.
- Click on Departments accordion and select a department and click Add Menu button
- You will see the department on the right hand side.
- Click Save Menu
- Go to the frontend and click on the department link
How to show employees in alphabetical order
You can display your employees in alphabetical order by modifying the shortcode of the view you’d like to use. You do not need to create the shortcode manually. Employee Directory Pro comes with Visual Shortcode Builder component which can be used to create simple or complex shortcodes.
For example, the following shortcode displays employees in alphabetical order using employee circle grid view:
// The following shortcode displays employees in alphabetical order using list grid view in Employee Directory WordPress plugin | |
[employee_circle_grid filter="misc::orderby::is::title;misc::order::is::ASC;"] |