Title: imagisca's Replies | WordPress.org

---

# imagisca

  [  ](https://wordpress.org/support/users/imagisca/)

 *   [Profile](https://wordpress.org/support/users/imagisca/)
 *   [Topics Started](https://wordpress.org/support/users/imagisca/topics/)
 *   [Replies Created](https://wordpress.org/support/users/imagisca/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/imagisca/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/imagisca/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/imagisca/engagements/)
 *   [Favorites](https://wordpress.org/support/users/imagisca/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Job Board] Back to Jobs buttom when viewing a specific job](https://wordpress.org/support/topic/back-to-jobs-buttom-when-viewing-a-specific-job/)
 *  Thread Starter [imagisca](https://wordpress.org/support/users/imagisca/)
 * (@imagisca)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/back-to-jobs-buttom-when-viewing-a-specific-job/#post-15852553)
 * That did the trick. Thank you for the quick reply. For others looking for a similar
   solution here is what I did.
 * Added the following code to functions.php (ideally of a child theme)
 * function jobs_back() {
    echo ‘[Back to Careers](https://wordpress.org/support/users/imagisca/replies/?output_format=md#)‘;}
   add_action(‘single_job_listing_meta_before’, ‘jobs_back’);
 * Modify the code in jobs_back function to whatever you would like to show on the
   page.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dynamics 365 Integration] Pass a link from CRM view to WordPress](https://wordpress.org/support/topic/pass-a-link-from-crm-view-to-wordpress/)
 *  Thread Starter [imagisca](https://wordpress.org/support/users/imagisca/)
 * (@imagisca)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/pass-a-link-from-crm-view-to-wordpress/#post-15489673)
 * Found a solution. Instead of letting the view be generated automatically, I used
   the following
 *     ```
       [msdyncrm_twig]
       {% view entity="List" name="Waiting Lists" count="10" cache="PT30M" %}
       {% for c in entityview.records %}
       <ul>
       <li>{{ c.name }} - {{ c.id }} - <a href="#">Sign up</a></li>
       </ul>
       {% endfor %}
       {% endview %}
       [/msdyncrm_twig]
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)